-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
103 lines (103 loc) · 3.26 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bedita/manager",
"description": "BEdita Manager - official admin webapp for BEdita4 API",
"homepage": "https://www.bedita.com",
"type": "project",
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/bedita/manager",
"issues": "https://github.com/bedita/manager/issues"
},
"authors": [
{
"name": "ChannelWeb s.r.l.",
"email": "info@channelweb.it",
"homepage": "https://www.channelweb.it"
},
{
"name": "Chia Lab s.r.l.",
"email": "dev@chialab.it",
"homepage": "https://www.chialab.it"
}
],
"require": {
"php": ">=8.3",
"bedita/i18n": "^5.1.0",
"bedita/web-tools": "^5.3",
"cakephp/authentication": "^2.9",
"cakephp/cakephp": "~4.5.0",
"cakephp/plugin-installer": "^1.3",
"josegonzalez/dotenv": "^4.0",
"league/flysystem": "^3.16",
"league/oauth2-github": "^3.0",
"league/oauth2-google": "^4.0",
"mobiledetect/mobiledetectlib": "^2.8",
"phpoffice/phpspreadsheet": "^1.22",
"thenetworg/oauth2-azure": "^2.2",
"wikimedia/composer-merge-plugin": "^2.0.1"
},
"require-dev": {
"cakephp/bake": "^2.6",
"cakephp/cakephp-codesniffer": "~4.7.0",
"cakephp/console": "^4.4",
"cakephp/debug_kit": "^4.7.1",
"cakephp/repl": "^0.1",
"dereuromark/cakephp-ide-helper": "~1.17.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.6",
"vimeo/psalm": "^5.18"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-create-project-cmd": "App\\Console\\Installer::postInstall",
"post-update-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@cs-check"
],
"stan": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"coverage": "vendor/bin/phpunit --colors=always --coverage-html coverage"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cakephp/plugin-installer": true,
"wikimedia/composer-merge-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"extra": {
"merge-plugin": {
"include": [
"composer.local.json",
"plugins/*/*/composer.json",
"plugins/*/composer.json"
],
"recurse": true,
"replace": false,
"merge-dev": false,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
}
}