-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (37 loc) · 929 Bytes
/
Copy pathcomposer.json
File metadata and controls
executable file
·38 lines (37 loc) · 929 Bytes
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": "HanafiAhmat/Cake3-TestPlugin",
"type": "cakephp-plugin",
"description": "A skeleton example to create a Cake3 plugin.",
"keywords": ["cakephp", "cake3", "plugin", "skeleton", "travis", "scrutinizer", "coveralls"],
"homepage": "https://github.com/HanafiAhmat/Cake3-TestPlugin",
"license": "MIT",
"support":{
"source":"https://github.com/HanafiAhmat/Cake3-TestPlugin",
"issues":"https://github.com/HanafiAhmat/Cake3-TestPlugin/issues"
},
"authors": [
{
"name": "hanafi Ahmat",
"email": "ahmat.hanafi@gmail.com",
"homepage": "https://github.com/HanafiAhmat"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.1.*"
},
"autoload": {
"psr-4": {
"HanafiAhmat\\Cake3-TestPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HanafiAhmat\\Cake3-TestPlugin\\Test\\": "tests"
}
}
}