-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.25 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
{
"name": "mvo/contao-twig",
"type": "contao-bundle",
"description": "Replace your Contao php templates with Twig templates.",
"keywords": [
"contao",
"twig"
],
"license": "MIT",
"authors": [
{
"name": "Moritz Vondano",
"homepage": "https://github.com/m-vo/contao-twig"
}
],
"require": {
"php": ">=7.4",
"contao/core-bundle": "^4.9",
"symfony/twig-bundle": "^4.4 || ^5.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.11.8",
"phpunit/phpunit": "^8.0",
"contao/test-case": "^4.1"
},
"conflict": {
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Mvo\\ContaoTwig\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mvo\\ContaoTwig\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "Mvo\\ContaoTwig\\ContaoManager\\Plugin"
},
"scripts": {
"cs": [
"vendor/bin/php-cs-fixer fix -v --ansi"
],
"phpstan": [
"vendor/bin/phpstan analyse src tests --level=7 --ansi"
],
"phpunit": [
"vendor/bin/phpunit"
],
"chain": [
"@cs",
"@phpstan",
"@phpunit"
]
}
}