-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (40 loc) · 1.03 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
{
"name": "loadsys/cakephp-loadsys-theme",
"description": "CakePHP 3.x bake generation theme that matches Loadsys' code sniffer standards.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "bake", "templates", "plugin"],
"homepage": "https://github.com/loadsys/CakePHP-LoadsysTheme",
"license": "MIT",
"authors": [
{
"name": "Justin Yost",
"email": "[email protected]",
"homepage": "https://www.yostivanich.com/",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/loadsys/CakePHP-LoadsysTheme/issues",
"source": "https://github.com/loadsys/CakePHP-LoadsysTheme"
},
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"cakephp/bake": "~1.1",
"loadsys/loadsys_codesniffer": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"autoload": {
"psr-4": {
"LoadsysTheme\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LoadsysTheme\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}