diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/composer.json b/composer.json index 2abf464..e1126ec 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "vlucas/phpdotenv", "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", "keywords": ["env", "dotenv", "environment"], - "license" : "BSD-3-Clause-Attribution", + "license" : "BSD-3-Clause", "authors" : [ { "name": "Vance Lucas", @@ -11,10 +11,11 @@ } ], "require": { - "php": ">=5.3.9" + "php": ">=5.3.9", + "symfony/polyfill-ctype": "^1.9" }, "require-dev": { - "phpunit/phpunit": "^4.8 || ^5.0" + "phpunit/phpunit": "^4.8.35 || ^5.0" }, "autoload": { "psr-4": { @@ -23,7 +24,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.4-dev" + "dev-master": "2.6-dev" } } } |