forked from FriendsOfCake/crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name":"friendsofcake/crud",
"description":"CakePHP Application development on steroids - rapid prototyping / scaffolding & production ready code - XML / JSON APIs and more",
"type":"cakephp-plugin",
"keywords":[
"cakephp",
"crud",
"create",
"retrieve",
"update",
"delete",
"bake",
"cake",
"scaffold",
"scaffolding"
],
"homepage":"https://github.com/FriendsOfCake/crud",
"license":"MIT",
"authors":[
{
"name":"Christian Winther",
"role":"Author",
"homepage":"http://cakephp.nu/"
},
{
"name":"José Lorenzo Rodríguez",
"role":"Contributor",
"homepage":"https://github.com/lorenzo"
},
{
"name":"Andy Dawson",
"role":"Contributor",
"homepage":"https://github.com/ad7six"
},
{
"name":"ADmad",
"role":"Contributor",
"homepage":"https://github.com/admad"
}
],
"require":{
"cakephp/cakephp": "^3.2.2"
},
"require-dev": {
"phpunit/phpunit": "<6.0",
"friendsofcake/cakephp-test-utilities": "dev-master",
"friendsofcake/search": "dev-master"
},
"autoload": {
"psr-4": {
"Crud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crud\\Test\\": "tests",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"suggest": {
"friendsofcake/search": "Provides search capabilities for the Crud plugin.",
"friendsofcake/crud-view": "Automated admin backend based on your Crud configuration.",
"neomerx/json-api": "Framework agnostic JSON API (jsonapi.org) implementation"
},
"support":{
"source":"https://github.com/FriendsOfCake/crud",
"issues":"https://github.com/FriendsOfCake/crud/issues",
"wiki":"http://crud.readthedocs.org/en/latest/",
"irc":"irc://irc.freenode.org/friendsofcake"
}
}