-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
81 lines (81 loc) · 2.59 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
{
"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": "^8.1",
"ext-json": "*",
"ext-zip": "*",
"symfony/framework-bundle": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/console": "^6.4",
"symfony/finder": "^6.4",
"symfony/process": "^6.4",
"symfony/yaml": "^6.4",
"symfony/monolog-bundle": "^3.3",
"firebase/php-jwt": "^6.0",
"crell/api-problem": "^3.1",
"composer/composer": "^2.6.2",
"studio24/rotate": "^1.0",
"ramsey/uuid": "^4.0",
"spomky-labs/otphp": "^11.3",
"web-auth/webauthn-lib": "^4.9",
"symfony/serializer": "^6.4",
"phpdocumentor/reflection-docblock": "^5.6"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"phpunit/phpunit": "^9.5.19",
"symfony/phpunit-bridge": "^6.4"
},
"autoload": {
"psr-4": {
"Contao\\ManagerApi\\": "api/"
}
},
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
}
},
"scripts": {
"phing": "@php vendor-bin/phing/vendor/bin/phing",
"ecs": "@php vendor-bin/ecs/vendor/bin/ecs check --fix",
"phpstan": "@php vendor-bin/phpstan/vendor/bin/phpstan analyze",
"rector": "@php vendor-bin/rector/vendor/bin/rector",
"depcheck": "@php vendor-bin/composer-dependency-analyser/vendor/bin/composer-dependency-analyser --config=vendor-bin/composer-dependency-analyser/config.php",
"unit-tests": "@php vendor/bin/phpunit"
}
}