1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "vlucas/phpdotenv",
- "type": "library",
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": ["env", "dotenv", "environment"],
- "homepage": "http://github.com/vlucas/phpdotenv",
- "license" : "BSD",
- "authors" : [
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "http://www.vancelucas.com"
- }
- ],
- "require": {
- "php": ">=5.3.2"
- },
- "require-dev": {
- "phpunit/phpunit": "~4.0"
- },
- "autoload": {
- "psr-0": {
- "Dotenv": "src/"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- }
- }
- }
|