-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcomposer.json
63 lines (63 loc) · 1.6 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
{
"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": "^5.0",
"friendsofcake/crud": "^7.0",
"friendsofcake/bootstrap-ui": "^5.1"
},
"require-dev": {
"friendsofcake/cakephp-test-utilities": "^3.0",
"markstory/asset_compress": "^5.0",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"autoload": {
"psr-4": {
"CrudView\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CrudView\\Test\\": "tests"
}
},
"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"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}