-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "mixerapi/bake",
"description": "A bake template for RESTful CakePHP controllers",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": ["cakephp","cakephp bake","cakephp scaffold"],
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0",
"cakephp/bake": "^3.0"
},
"require-dev": {
"josegonzalez/dotenv": "^3.2",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"MixerApi\\Bake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MixerApi\\Bake\\": "plugins/bake/src/",
"MixerApi\\Bake\\Test\\": "plugins/bake/tests/",
"MixerApi\\Bake\\Test\\App\\": "plugins/bake/tests/test_app/src/"
}
},
"support": {
"issues": "https://github.com/mixerapi/mixerapi-dev/issues",
"source": "https://github.com/mixerapi/bake"
},
"authors": [
{
"name": "MixerApi",
"role": "Organization"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}