-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "soluciones-ypunto/cake-admin",
"description": "CakePHP admin plugin",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"cakephp/cakephp": "^4.4",
"cakephp/migrations": "^3.0",
"mobiledetect/mobiledetectlib": "^2.8",
"friendsofcake/bootstrap-ui": "4.*",
"cakephp/plugin-installer": "^1.3"
},
"require-dev": {
"cakephp/bake": "^2.3",
"cakephp/debug_kit": "^4.4",
"phpunit/phpunit": "^8.0",
"dereuromark/cakephp-ide-helper": "1.*",
"symfony/var-dumper": "^5.0",
"psy/psysh": "@stable",
"xavier83ar/cakephp-spanish-inflections": "^4.0"
},
"autoload": {
"psr-4": {
"Ypunto\\Admin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DemoApp\\": "tests/DemoApp/src/",
"DemoPlugin\\": "tests/DemoApp/plugins/DemoPlugin/src",
"Ypunto\\Admin\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true
}
}
}