forked from FriendsOfCake/crud-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
{
"name": "friendsofcake/crud-view",
"description": "View layer for CRUD",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"crud",
"create",
"retrieve",
"update",
"delete",
"bake",
"cake",
"scaffold",
"scaffolding"
],
"homepage": "https://github.com/FriendsOfCake/crud-view",
"license": "MIT",
"authors": [
{
"name": "Christian Winther",
"role": "Author",
"homepage": "http://cakephp.nu/"
},
{
"name": "Jose Diaz-Gonzalez",
"role": "Author",
"homepage": "http://josediazgonzalez.com/"
}
],
"require": {
"cakephp/cakephp": "~3.0",
"friendsofcake/crud": "*",
"friendsofcake/bootstrap-ui": "~0.3"
},
"require-dev": {
"friendsofcake/cakephp-test-utilities": "dev-master"
},
"autoload": {
"psr-4": {
"CrudView\\": "src"
}
},
"support": {
"source": "https://github.com/FriendsOfCake/crud-view",
"issues": "https://github.com/FriendsOfCake/crud-view/issues",
"wiki": "http://cakephp.nu/cakephp-crud/",
"irc": "irc://irc.freenode.org/friendsofcake"
}
}