Skip to content

Releases: josegonzalez/php-dotenv

4.0.0

29 May 22:50
e97dbd3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.2.0...4.0.0

3.2.0

19 Sep 15:50
Compare
Choose a tag to compare
  • #39: Preserve zero values

3.1.0

14 Jul 04:45
Compare
Choose a tag to compare
  • Add support for PHP 5.5+
    By removing the requirement of running apache_* tests, we can lower the requirement while not breaking any functionality.

3.0.0

03 Jan 02:28
Compare
Choose a tag to compare
  • Drop PHP 5.x support
  • Add hhvm to testing matrix
  • Add apache_getenv support

2.1.0

03 Jan 02:04
Compare
Choose a tag to compare
  • b07b572: Empty values are treated as nulls
  • 342d970: Properly test variable quoting
  • #31: Add tests for #26 and #27

2.0.0

07 Jan 16:10
Compare
Choose a tag to compare
  • 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 expect php-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

07 Jan 07:14
Compare
Choose a tag to compare
  • Better documentation
  • Fix coveralls support

1.2.1

25 Dec 13:33
Compare
Choose a tag to compare
  • Add RemapKeysFilter

1.2.0

25 Dec 13:10
Compare
Choose a tag to compare
  • 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

25 Dec 11:54
Compare
Choose a tag to compare
  • 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