gitextract_7d43qxaz/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── SECURITY.md │ └── workflows/ │ ├── static.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── UPGRADING.md ├── composer.json ├── phpstan-baseline.neon ├── phpstan.neon.dist ├── phpunit.xml.dist ├── src/ │ ├── Dotenv.php │ ├── Exception/ │ │ ├── ExceptionInterface.php │ │ ├── InvalidEncodingException.php │ │ ├── InvalidFileException.php │ │ ├── InvalidPathException.php │ │ └── ValidationException.php │ ├── Loader/ │ │ ├── Loader.php │ │ ├── LoaderInterface.php │ │ └── Resolver.php │ ├── Parser/ │ │ ├── Entry.php │ │ ├── EntryParser.php │ │ ├── Lexer.php │ │ ├── Lines.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ └── Value.php │ ├── Repository/ │ │ ├── Adapter/ │ │ │ ├── AdapterInterface.php │ │ │ ├── ApacheAdapter.php │ │ │ ├── ArrayAdapter.php │ │ │ ├── EnvConstAdapter.php │ │ │ ├── GuardedWriter.php │ │ │ ├── ImmutableWriter.php │ │ │ ├── MultiReader.php │ │ │ ├── MultiWriter.php │ │ │ ├── PutenvAdapter.php │ │ │ ├── ReaderInterface.php │ │ │ ├── ReplacingWriter.php │ │ │ ├── ServerConstAdapter.php │ │ │ └── WriterInterface.php │ │ ├── AdapterRepository.php │ │ ├── RepositoryBuilder.php │ │ └── RepositoryInterface.php │ ├── Store/ │ │ ├── File/ │ │ │ ├── Paths.php │ │ │ └── Reader.php │ │ ├── FileStore.php │ │ ├── StoreBuilder.php │ │ ├── StoreInterface.php │ │ └── StringStore.php │ ├── Util/ │ │ ├── Regex.php │ │ └── Str.php │ └── Validator.php ├── tests/ │ ├── Dotenv/ │ │ ├── DotenvTest.php │ │ ├── Loader/ │ │ │ └── LoaderTest.php │ │ ├── Parser/ │ │ │ ├── EntryParserTest.php │ │ │ ├── LexerTest.php │ │ │ ├── LinesTest.php │ │ │ └── ParserTest.php │ │ ├── Repository/ │ │ │ ├── Adapter/ │ │ │ │ ├── ArrayAdapterTest.php │ │ │ │ ├── EnvConstAdapterTest.php │ │ │ │ ├── PutenvAdapterTest.php │ │ │ │ └── ServerConstAdapterTest.php │ │ │ └── RepositoryTest.php │ │ ├── Store/ │ │ │ └── StoreTest.php │ │ └── ValidatorTest.php │ └── fixtures/ │ └── env/ │ ├── assertions.env │ ├── booleans.env │ ├── commented.env │ ├── empty.env │ ├── example.env │ ├── exported.env │ ├── immutable.env │ ├── integers.env │ ├── large.env │ ├── multibyte.env │ ├── multiline.env │ ├── multiple.env │ ├── mutable.env │ ├── nested.env │ ├── quoted.env │ ├── specialchars.env │ ├── unicodevarnames.env │ ├── utf8-with-bom-encoding.env │ └── windows.env └── vendor-bin/ └── phpstan/ └── composer.json