forked from DMKEBUSINESSGMBH/typo3-t3twig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
116 lines (116 loc) · 3.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dmk/t3twig",
"description": "Extend rn_base for using twig templates instead of marker templates",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"twig",
"template"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Eric Hertwig",
"email": "eric.hertwig@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "René Nitzsche",
"email": "nitzsche@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "Michael Wagner",
"email": "michael.wagner@dmk-ebusiness.de",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^11.5 || ^12.4",
"digedag/rn-base": "~1.18",
"twig/twig": "~1.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"friendsofphp/php-cs-fixer": "^3.3",
"nimut/testing-framework": "^2 || ^4.0 || ^5.0",
"phpunit/phpunit": "^5 || ^6",
"phpstan/phpstan": "^0.12.8",
"phpstan/extension-installer": "^1.0",
"saschaegerer/phpstan-typo3": "^0.13",
"dmk/phpstan-rnbase": "^0.0.3"
},
"suggest": {
"twig/extensions": "Common additional features for Twig that do not directly belong in core. See @Documentation/reference/extensions/ThirdParty.md"
},
"autoload": {
"psr-4": {
"DMK\\T3twig\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"DMK\\T3twig\\Tests\\": "Tests"
}
},
"support": {
"email": "dev@dmk-ebusiness.de"
},
"replace": {
"typo3-ter/t3twig": "*"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/t3twig ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/t3twig"
],
"lint:php": [
"[ -e .Build/bin/parallel-lint ] || composer update",
".Build/bin/parallel-lint ./Classes"
],
"lint": [
"@lint:php"
],
"test:phpcs": [
"[ -e .Build/bin/php-cs-fixer ] || composer update --ansi",
".Build/bin/php-cs-fixer fix -v --dry-run --diff --ansi"
],
"test:phpstan": [
"[ -e .Build/bin/phpstan ] || composer update --ansi",
".Build/bin/phpstan analyse -c phpstan.neon --memory-limit=512M --ansi"
],
"test:phpunit": [
"[ -e .Build/bin/phpunit ] || composer update --ansi",
"export TYPO3_PATH_WEB=$PWD/.Build/Web && .Build/bin/phpunit -c phpunit.xml.dist --colors=always"
],
"test": [
"@test:phpcs",
"@test:phpstan",
"@test:phpunit"
],
"fix:phpcs": [
"[ -e .Build/bin/php-cs-fixer ] || composer update --ansi",
".Build/bin/php-cs-fixer fix -v"
],
"fix": [
"@fix:phpcs"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "t3twig",
"web-dir": ".Build/Web",
"app-dir": ".Build"
}
}
}