-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.19 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
47
{
"name": "dlapps/consul-php-envvar",
"description": "Define missing environment variables from Consul KV and expose them in Symfony 3.2+ containers",
"homepage": "https://github.com/dlapps/consul-php-envvar",
"type": "library",
"keywords": [
"php",
"consul",
"environment",
"variable"
],
"require": {
"php": ">=7.0",
"sensiolabs/consul-php-sdk": "^3.0",
"symfony/dependency-injection": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-4": {
"DL\\ConsulPhpEnvVar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DL\\ConsulPhpEnvVar\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Petre Pătrașc",
"email": "petre@dreamlabs.ro",
"homepage": "https://www.dreamlabs.ro"
}
],
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
},
"config": {
"sort-packages": true
}
}