-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.02 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
{
"name": "mixerapi/crud",
"description": "A CRUD (Create, Read, Update, Delete) plugin for your CakePHP project.",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"friendsofcake/search": "^7.0",
"josegonzalez/dotenv": "^3.2",
"phpunit/phpunit": "^10.0"
},
"suggest": {
"friendsofcake/search": "Integrates with mixerapi/crud for easy paginatable search filters"
},
"autoload": {
"psr-4": {
"MixerApi\\Crud\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MixerApi\\Crud\\": "plugins/crud/src/",
"MixerApi\\Crud\\Test\\": "plugins/crud/tests/",
"MixerApi\\Crud\\Test\\App\\": "plugins/crud/tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}