-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.44 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "mirko-pagliai/cakephp-essentials",
"description": "cakephp-essentials",
"homepage": "https://github.com/mirko-pagliai/cakephp-essentials",
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Mirko Pagliai",
"email": "mirko.pagliai@gmail.com"
}
],
"require": {
"php": ">=8.4",
"cakephp/cakephp": "^5.2",
"axllent/jquery": "~3.7|~4.0",
"friendsofcake/bootstrap-ui": "^5.1.3",
"twbs/bootstrap": "~5.3",
"symfony/filesystem": "^7.3"
},
"require-dev": {
"cakephp/authentication": "^3.2",
"cakephp/authorization": "^3.0",
"cakephp/cakephp-codesniffer": "^5.0",
"cakedc/cakephp-phpstan": "^4.0",
"phpunit/phpunit": "^12.5.8 || ^13.0",
"mockery/mockery": "^1.6"
},
"suggest": {
"twbs/bootstrap-icons": "Bootstrap icons"
},
"autoload": {
"psr-4": {
"Cake\\Essentials\\": "src"
},
"files": [
"src/global_functions.php",
"src/request_detectors.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/test_app/TestApp",
"Cake\\Essentials\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=coverage"
},
"config": {
"allow-plugins": {
"composer/installers": false,
"dealerdirect/phpcodesniffer-composer-installer": true,
"oomphinc/composer-installers-extender": true
}
}
}