-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.21 KB
/
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
38
39
40
41
42
43
44
45
46
{
"name": "c0ntax/env-providers-bundle",
"version": "0.1.1",
"description": "A collection of extensions to allow you to use symfony .env files easier",
"type": "symfony-bundle",
"license": "Apache-2.0",
"homepage": "https://github.com/c0ntax/env-providers-bundle",
"authors": [
{
"name": "Dan Burzynski",
"email": "[email protected]"
}
],
"keywords": [
"symfony",
"bundle",
"dotenv",
"config"
],
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"C0ntax\\EnvProvidersBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"C0ntax\\EnvProvidersBundle\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.1",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/config": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0",
"symfony/dotenv": "^3.4|^4.0"
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^7.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/phpunit-bridge": "^3.4|^4.0"
}
}