-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.39 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
{
"name": "vierwd/typo3-base",
"description": "FORWARD MEDIA TYPO3 base setup",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension"
],
"support": {
"issues": "https://github.com/4wdmedia/vierwd_base/issues"
},
"authors": [{
"name": "FORWARD MEDIA",
"email": "[email protected]",
"homepage": "https://www.4wdmedia.de",
"role": "Developer"
}],
"require": {
"helhum/typo3-console": "^7.0.0",
"linkorb/jsmin-php": "^1.0",
"masterminds/html5": "^2.6",
"php": ">=7.4.0",
"vierwd/svg-inliner": "^1.0",
"vierwd/typo3-smarty": "^11.x-dev"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"friendsofphp/php-cs-fixer": "^2.12.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpunit/phpunit": "^9.0",
"saschaegerer/phpstan-typo3": "^0.13.1",
"typo3/cms-core": "^11.4",
"typo3/cms-fluid": "^11.4",
"typo3/cms-frontend": "^11.4",
"typo3/cms-impexp": "^11.4",
"typo3/cms-indexed-search": "^11.4",
"typo3/cms-reports": "^11.4",
"typo3/testing-framework": "^6.11",
"vierwd/coding-standard": "dev-master"
},
"autoload": {
"psr-4": {
"Vierwd\\VierwdBase\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Vierwd\\VierwdBase\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"replace": {
"vierwd/typo3_base": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "11.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "vierwd_base",
"web-dir": ".Build/Web",
"Package": {
"protected": true,
"partOfFactoryDefault": true,
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"phplint": "find . -name \\*.php ! -path \"./.Build/*\" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \\;",
"phpcs": "phpcs -n --runtime-set ignore_warnings_on_exit 1 --standard=.Build/vendor/vierwd/coding-standard/ForwardMedia Classes/ Tests/",
"phpstan": "phpstan analyze",
"unit-test": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/",
"test-all": [
"@phplint",
"@phpcs",
"@phpstan",
"@unit-test"
]
}
}