forked from foodcoopshop/foodcoopshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.54 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "foodcoopshop/foodcoopshop",
"description": "The open source software for your foodcoop",
"homepage": "https://www.foodcoopshop.com",
"license": "AGPL-3.0",
"authors": [
{
"name": "FoodCoopShop Community",
"homepage": "https://github.com/foodcoopshop/foodcoopshop/graphs/contributors"
}
],
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
},
"require": {
"php": ">=8.1",
"cakephp/cakephp": "4.4.*",
"cakephp/migrations": "^3.0",
"cakephp/plugin-installer": "^1.0",
"markstory/asset_compress": "4.*",
"intervention/image": "2.*",
"cviebrock/discourse-php": "^0.9.3",
"studio-42/elfinder": "^2.1",
"ezyang/htmlpurifier": "^4.16",
"league/csv": "^9.5",
"dereuromark/cakephp-queue": "^6.0",
"tecnickcom/tcpdf": "^6.4",
"hisorange/browser-detect": "^4.4",
"phpoffice/phpspreadsheet": "1.*",
"ifsnop/mysqldump-php": "^2.9"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "^4.0",
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.0",
"cakephp/bake": "^2.8",
"ergebnis/phpstan-rules": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "src",
"Admin\\": "plugins/Admin/src/",
"Network\\": "plugins/Network/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"
],
"build": [
"bash bin/cake asset_compress build"
],
"migrate": [
"bash bin/cake migrations migrate",
"bash bin/cake migrations migrate -p Queue"
],
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "phpunit --colors=always"
},
"prefer-stable": true
}