-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 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
{
"name": "gintonicweb/gintonic-cms",
"description": "GintonicCMS plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": ["cakephp", "bootstrap", "requirejs"],
"homepage": "http://gintonicweb.com",
"license": "GPL 2.0",
"authors": [
{
"name": "Philippe Lafrance",
"homepage": "http://phillafrance.com",
"role": "Author"
},
{
"name": "GintonicWeb Contributors",
"homepage": "http://github.com/gintonicweb/GintonicCMS/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/gintonicweb/GintonicCMS/issues",
"source": "https://github.com/gintonicweb/GintonicCMS"
},
"require": {
"php": ">=5.4",
"cakephp/cakephp": "3.0.x-dev"
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"GintonicCMS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"GintonicCMS\\Test\\": "tests"
}
}
}