summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2abf464
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,29 @@
+{
+ "name": "vlucas/phpdotenv",
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": ["env", "dotenv", "environment"],
+ "license" : "BSD-3-Clause-Attribution",
+ "authors" : [
+ {
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "http://www.vancelucas.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.9"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8 || ^5.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Dotenv\\": "src/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.4-dev"
+ }
+ }
+}