-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 1.61 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
{
"name": "bedita/core",
"type": "cakephp-plugin",
"description": "BEdita core logic and models.",
"keywords": ["cakephp", "cake3", "plugin", "bedita", "core", "travis", "scrutinizer", "coveralls"],
"license": "LGPL-3.0-or-later",
"support": {
"source": "https://github.com/bedita/bedita",
"issues": "https://github.com/bedita/bedita/issues"
},
"authors": [
{
"name": "Chia Lab s.r.l.",
"email": "[email protected]",
"homepage": "http://www.chialab.it"
},
{
"name": "ChannelWeb s.r.l.",
"email": "[email protected]",
"homepage": "http://www.channelweb.it"
}
],
"require": {
"php": ">=7.4",
"cakephp/cakephp": "~4.5.0",
"cakephp/migrations": "^3.5.2",
"cakephp/queue": "^0.1.11",
"league/flysystem": "^2.4.5",
"league/glide": "^2.2.2",
"robmorgan/phinx": "^0.12.10",
"symfony/yaml": "^5.4.3",
"swaggest/json-schema": "~0.12.39"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.7",
"enqueue/fs": "^0.10.16",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"BEdita\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\Core\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}