-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 1.05 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
{
"name": "frankfoerster/cakephp-environment",
"description": "CakePHP Environment Plugin. Manage multiple environments in your CakePHP application that differ in database setup, configuration settings (Configure) and custom feature flags.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "environment", "configuration", "configure", "config", "setup", "database"],
"homepage": "https://github.com/frankfoerster/cakephp-environment",
"license": "MIT",
"authors": [
{
"name": "Frank Förster",
"homepage": "http://frankfoerster.com",
"role": "Developer"
},
{
"name": "Stephan Gonder",
"homepage": "http://stephanaspi.com",
"role": "Contributor"
}
],
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"cakephp/cakephp": "3.*",
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/cakephp-codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"FrankFoerster\\Environment\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FrankFoerster\\Environment\\Test\\": "tests"
}
}
}