-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "croogo/core",
"description": "Croogo Core Plugin",
"require": {
"cakephp/cakephp": "^3.8"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "dev-master",
"phpunit/phpunit": "^5|^6",
"friendsofcake/cakephp-test-utilities": "dev-master"
},
"suggest": {
"croogo/example": "Example Croogo plugin"
},
"license": "MIT",
"authors": [
{
"name": "Croogo Development Team",
"email": "[email protected]"
}
],
"type": "cakephp-plugin",
"autoload": {
"psr-4": {
"Croogo\\Core\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Croogo\\Core\\Test\\": "tests",
"Croogo\\Core\\Test\\App\\": "tests/test_app/src",
"App\\": "tests/test_app/src",
"Shops\\": "tests/test_app/plugins/Shops/src",
"Suppliers\\": "tests/test_app/plugins/Suppliers/src"
}
},
"minimum-stability": "dev"
}