-
Notifications
You must be signed in to change notification settings - Fork 145
/
composer.json
78 lines (78 loc) · 2.32 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
72
73
74
75
76
77
78
{
"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": "^5.0"
},
"require-dev": {
"friendsofcake/cakephp-test-utilities": "^3.0",
"friendsofcake/search": "^7.0",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"autoload": {
"psr-4": {
"Crud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crud\\Test\\": "tests",
"Crud\\Test\\App\\": "tests/test_app/src",
"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.",
"friendsofcake/crud-json-api": "Crud listener for building APIs following the JSON API specification"
},
"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"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}