forked from pluswerk/typoscript-auto-fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.67 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
{
"name": "macopedia/typoscript-auto-fixer",
"description": "Provides an auto fixer based on the TypoScript linter from Martin Helmich",
"type": "library",
"license": "GPL-3.0-or-later",
"keywords": ["TYPO3 CMS", "TypoScript"],
"authors": [
{
"name": "Sebastian Hofer",
"email": "sebastian.hofer@pluswerk.ag",
"homepage": "http://pluswerk.ag",
"role": "Developer"
}
],
"require": {
"php": ">=7.4.0",
"helmich/typo3-typoscript-lint": "^v3.1",
"typo3/cms-core": "^11.5",
"symfony/console": "~2.7|~3.0|~4.0|~5.0",
"symfony/yaml": "~2.7|~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "8.4.*",
"pluswerk/grumphp-config": "^5.0"
},
"autoload": {
"psr-4": {
"Pluswerk\\TypoScriptAutoFixer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pluswerk\\TypoScriptAutoFixer\\Tests\\": "tests"
}
},
"config": {
"vendor-dir": "../../vendor",
"bin-dir": "../../vendor/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpro/grumphp": true,
"pluswerk/grumphp-config": true
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "../../public"
},
"pluswerk/grumphp-config": {
"auto-setting": false
},
"grumphp": {
"config-default-path": "grumphp.yml"
}
},
"bin": "./bin/tscsf"
}