-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 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
{
"name": "havokinspiration/cakephp-actions-class",
"description": "Manage your Controllers actions as single classes in CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Yves P.",
"email": "havokinspiration@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"cakephp/cakephp": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"cakephp/bake": "@stable"
},
"autoload": {
"psr-4": {
"HavokInspiration\\ActionsClass\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HavokInspiration\\ActionsClass\\Test\\": "tests",
"HavokInspiration\\ActionsClass\\PHPStan\\": "tests/PHPStan",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/test_app/TestApp",
"TestPlugin\\": "tests/test_app/Plugin/TestPlugin/src",
"Company\\TestPluginThree\\": "tests/test_app/Plugin/Company/TestPluginThree/src"
}
}
}