-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.04 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
{
"name": "cnizzardini/cakephp-yummy",
"description": "Yummy plugin for CakePHP including an intuitive search, ACL, and bake theme",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": ["cakephp3","cakephp3 search","cakephp3 acl","cakephp3 bake"],
"require": {
"php": ">=7.2",
"cakephp/cakephp": ">=3.6.0 <=3.9.0"
},
"require-dev": {
"phpunit/phpunit": "6.0.*"
},
"autoload": {
"psr-4": {
"Yummy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yummy\\Test\\": "tests/",
"Yummy\\Test\\Fixture\\": "tests/"
}
},
"support": {
"issues": "https://github.com/cnizzardini/cakephp-yummy/issues",
"wiki": "https://github.com/cnizzardini/cakephp-yummy/wiki",
"source": "https://github.com/cnizzardini/cakephp-yummy"
},
"authors": [
{
"name": "Chris Nizzardini",
"homepage": "http://www.cnizz.com/yummy-demo",
"role": "Developer"
}
]
}