-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.34 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
{
"name": "terminal42/contao-build-tools",
"type": "composer-plugin",
"description": "Highly opinionated build tool setup for Contao websites.",
"keywords": ["contao", "ci", "cq", "code-style", "rector"],
"homepage": "https://github.com/terminal42/contao-build-tools",
"license": "MIT",
"authors": [
{
"name": "terminal42 gmbh",
"homepage": "http://www.terminal42.ch"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/terminal42"
},
{
"type": "other",
"url": "https://ko-fi.com/terminal42"
}
],
"require": {
"composer-plugin-api": "^2.0",
"composer/semver": "^3.0",
"symfony/filesystem": "^3 || ^4 || ^5 || ^6 || ^7",
"symfony/process": "^4.2 || ^5 || ^6 || ^7"
},
"require-dev": {
"deployer/deployer": "^7.0 || ^8.0",
"composer/composer": "^1.1 || ^2.0"
},
"conflict": {
"deployer/deployer": "< 7.0 || >= 9.0"
},
"autoload": {
"psr-4": {
"Terminal42\\ContaoBuildTools\\": "src/"
}
},
"extra": {
"class": "Terminal42\\ContaoBuildTools\\Composer\\Plugin"
},
"config": {
"allow-plugins": {
"contao/manager-plugin": false
}
}
}