forked from helhum/dotenv-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 965 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "helhum/dotenv-connector",
"type": "composer-plugin",
"license": "MIT",
"description": "Makes it possible to set environment variables for composer projects.",
"keywords": [
"composer", "env", "12factor", "dotenv"
],
"homepage": "https://github.com/helhum/dotenv-connector",
"authors": [
{
"name": "Helmut Hummel",
"email": "info@helhum.io"
}
],
"autoload": {
"psr-4": {
"Helhum\\DotEnvConnector\\": "src/"
}
},
"require": {
"php": ">=7.0 <7.3",
"composer-plugin-api": "^1.0",
"symfony/dotenv": "^3.3.0 || ^4.0"
},
"require-dev": {
"composer/composer": "^1.0.0",
"phpunit/phpunit": "^5",
"mikey179/vfsStream": "^1.6.0"
},
"extra": {
"class": "Helhum\\DotEnvConnector\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}