-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
64 lines (64 loc) · 1.87 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
{
"name": "anstiftung/mapped-repair-events",
"description": "Mapped repair events",
"homepage": "https://github.com/anstiftung/mapped-repair-events",
"config": {
"platform-check": false,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
},
"require": {
"php": ">=8.3",
"cakephp/authentication": "^3.0",
"cakephp/authorization": "^3.0",
"cakephp/cakephp": "5.1.*",
"cakephp/migrations": "^4.0",
"cakephp/plugin-installer": "~2.0",
"mobiledetect/mobiledetectlib": "4.*",
"markstory/asset_compress": "5.*",
"tedivm/jshrink": "^1.3",
"intervention/image": "3.*",
"studio-42/elfinder": "^2.1",
"ezyang/htmlpurifier": "^4.11",
"dereuromark/cakephp-feed": "^3.0",
"league/csv": "^9.8",
"eluceo/ical": "2.*",
"gregwar/captcha": "^1.1",
"druidfi/mysqldump-php": "^1.0",
"dereuromark/cakephp-queue": "8.*",
"tecnickcom/tcpdf": "^6.7"
},
"require-dev": {
"cakephp/debug_kit": "5.*",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "^11.0",
"friendsofcake/fixturize": "^3.0"
},
"autoload": {
"psr-4": {
"App\\": "src",
"Admin\\": "plugins/Admin/src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"post-install-cmd": [
"bash devtools/composer-post-install.sh"
],
"post-update-cmd": [
"bash devtools/composer-post-install.sh"
],
"test": "phpunit --colors=always"
},
"prefer-stable": true
}