forked from sitegeist/fluid-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.61 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
{
"name": "sitegeist/fluid-components",
"description": "Encapsulated frontend components with Fluid's ViewHelper syntax",
"type": "typo3-cms-extension",
"homepage": "https://github.com/sitegeist/fluid-components",
"license": ["GPL-2.0-or-later"],
"keywords": ["typo3", "typo3-extension", "fluid", "typo3-fluid", "components", "html", "template"],
"authors": [
{
"name": "Simon Praetorius",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sitegeist/fluid-components/issues"
},
"require": {
"php": ">=7.2.0 <8",
"typo3/cms-core": "^9.5 || ^10.2",
"typo3fluid/fluid": "^2"
},
"require-dev": {
"typo3/testing-framework": "^4.0 || ^6.0",
"squizlabs/php_codesniffer": "^3.0",
"editorconfig-checker/editorconfig-checker": "^10.0"
},
"autoload": {
"psr-4": {
"SMS\\FluidComponents\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"lint": [
"@lint:php",
"@lint:editorconfig"
],
"lint:php": "phpcs --standard=PSR2 --extensions=php --exclude=Generic.Files.LineLength --ignore=.Build,Tests,ext_emconf.php .",
"lint:editorconfig": "ec .",
"test": "phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/"
}
}