123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "vlucas/phpdotenv",
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": ["env", "dotenv", "environment"],
- "license" : "BSD-3-Clause",
- "authors" : [
- {
- "name": "Graham Campbell",
- "email": "graham@alt-three.com",
- "homepage": "https://gjcampbell.co.uk/"
- },
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "https://vancelucas.com/"
- }
- ],
- "require": {
- "php": "^5.4 || ^7.0",
- "phpoption/phpoption": "^1.5",
- "symfony/polyfill-ctype": "^1.9"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
- },
- "autoload": {
- "psr-4": {
- "Dotenv\\": "src/"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.6-dev"
- }
- }
- }
|