-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
74 lines (74 loc) · 2.19 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
{
"name": "contao/contao-manager",
"description": "Contao Manager is the management tool for Contao 4 Open Source CMS",
"type": "project",
"keywords": ["contao", "cms", "php", "vuejs", "symfony", "symfony-application", "manager", "installer"],
"homepage": "https://contao.org",
"license": "GPL-3.0+",
"authors": [
{
"name": "Andreas Schempp",
"homepage": "https://github.com/aschempp",
"role": "Developer"
}
],
"funding": [
{
"type": "other",
"url": "https://to.contao.org/donate"
}
],
"support": {
"issues": "https://github.com/contao/contao-manager/issues",
"forum": "https://community.contao.org",
"source": "https://github.com/contao/contao-manager",
"docs": "https://docs.contao.org"
},
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"ext-zip": "*",
"symfony/framework-bundle": "^5.4",
"symfony/security-bundle": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/console": "^5.4",
"symfony/finder": "^5.4",
"symfony/process": "^5.4",
"symfony/yaml": "^5.4",
"doctrine/annotations": "^1.0",
"terminal42/service-annotation-bundle": "^1.1.1",
"symfony/monolog-bundle": "^3.3",
"firebase/php-jwt": "^4.0",
"crell/api-problem": "^3.1",
"composer/composer": "^2.6.2",
"studio24/rotate": "^1.0",
"ramsey/uuid": "^3.9"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"bamarni/composer-bin-plugin": "^1.4"
},
"autoload": {
"psr-4": {
"Contao\\ManagerApi\\": "api/"
}
},
"config": {
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools"
}
},
"scripts": {
"phing": "@php tools/phing/vendor/bin/phing",
"cs-fixer": "@php tools/ecs/vendor/bin/ecs check api public --config tools/ecs/config.php --fix --ansi"
}
}