-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
51 lines (51 loc) · 1.61 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
47
48
49
50
51
{
"name": "josegonzalez/cakephp-environments",
"description": "CakePHP plugin to handle environments-level configuration",
"type": "cakephp-plugin",
"keywords": ["cakephp", "environments", "configuration"],
"homepage": "https://github.com/josegonzalez/cakephp-environments",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "cakephp+environments@josediazgonzalez.com",
"homepage": "http://josediazgonzalez.com",
"role": "Maintainer"
},
{
"name": "David Kullmann",
"role": "Contributor",
"homepage": "https://github.com/dkullmann"
},
{
"name": "David Steinsland",
"role": "Contributor",
"homepage": "https://github.com/davidsteinsland"
}
],
"require": {
"cakephp/cakephp": "~3.0",
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"cakephp/cakephp-codesniffer": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"support": {
"email": "cakephp+environments@josediazgonzalez.com",
"issues": "https://github.com/josegonzalez/cakephp-environments/issues",
"source": "https://github.com/josegonzalez/cakephp-environments"
},
"autoload": {
"psr-4": {
"Josegonzalez\\Environments\\": "src",
"Josegonzalez\\Environments\\Test\\Fixture\\": "tests\\Fixture"
}
},
"autoload-dev": {
"psr-4": {
"Josegonzalez\\Environments\\Test\\": "tests"
}
}
}