TinyEnv did not require the .env
file to exist when loading environment variables.
This could lead to unexpected behavior where the application silently ignores missing configuration, potentially causing insecure defaults or deployment misconfigurations.
Affected versions:
- 1.0.1 → 1.0.2
- 1.0.9 → 1.0.10
The issue has been fixed in version 1.0.11.
All users should upgrade to 1.0.11
or later.
As a workaround, users can manually verify the existence of the .env
file before initializing TinyEnv, for example:
```php if (!file_exists(DIR . '/.env')) { throw new RuntimeException('.env file is missing!'); }
{ "github_reviewed_at": "2025-09-09T20:59:52Z", "cwe_ids": [ "CWE-703" ], "nvd_published_at": "2025-09-09T20:15:49Z", "severity": "MODERATE", "github_reviewed": true }