Dotenv/composer.json

24 lines
481 B
JSON
Raw Normal View History

2018-01-19 01:01:01 +03:00
{
"name": "neonxp/dotenv",
2018-01-19 01:06:43 +03:00
"description": "Advanced loading and parsing .env file in PHP-7",
2018-01-19 01:01:01 +03:00
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Kiryukhin",
"email": "alexander@kiryukhin.su"
}
],
2018-01-19 01:06:43 +03:00
"require": {
2018-01-19 19:03:26 +03:00
"php": ">=7.1"
2018-01-19 01:06:43 +03:00
},
2018-01-19 01:01:01 +03:00
"autoload": {
"psr-4": {
"NeonXP\\Dotenv\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5"
}
}