Releases: josegonzalez/php-dotenv
Releases · josegonzalez/php-dotenv
4.0.0
What's Changed
- Added skipExisting example block by @stefanvangastel in #40
- Create CODE_OF_CONDUCT.md by @josegonzalez in #45
- Updating this to support php8.x still supports 5.x and 7.x by @fr3nch13 in #55
New Contributors
- @stefanvangastel made their first contribution in #40
- @fr3nch13 made their first contribution in #55
Full Changelog: 3.2.0...4.0.0
3.2.0
3.1.0
- Add support for PHP 5.5+
By removing the requirement of runningapache_*
tests, we can lower the requirement while not breaking any functionality.
3.0.0
- Drop PHP 5.x support
- Add hhvm to testing matrix
- Add
apache_getenv
support
2.1.0
2.0.0
-
Dropped our parser in favor of the absolutely beautiful parser by @m1 here.
This change now improves our
.env
parsing, and also makes parsed output a bit more lax. Please take note of this if you expectphp-dotenv
.env
files to be bash compatible; you may wish to manually check as stated in the readme.One notable change is the introduction of a ParseException which is currently not caught by the
->parse()
call. We retain the right to change this in a minor release to bring it in line with the rest of the codebase.
1.2.2
- Better documentation
- Fix coveralls support
1.2.1
- Add RemapKeysFilter
1.2.0
- Added the ability to use function callables as filters
- Added the ability to pass in a configuration array as the second parameter to a filter
- Use badges from shields.io
1.1.0
- Add official support for PHP 5.6.x and PHP 7.0.x
- Install phpcs and php-coveralls via composer's
require-dev
option when running tests - Add
UppercaseFirstKeyFilter
class