-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1011 Bytes
/
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
{
"name": "sinso/webcomponents",
"type": "typo3-cms-extension",
"version": "0.2.0",
"description": "Render Web Components",
"extra": {
"typo3/cms": {
"extension-key": "webcomponents"
}
},
"autoload": {
"psr-4": {
"Sinso\\Webcomponents\\": "Classes/"
}
},
"require": {
"ext-json": "*",
"typo3/cms-core": "^12.0 || ^13.0",
"typo3/cms-frontend": "*"
},
"require-dev": {
"phpstan/phpstan": "^1.11.9",
"saschaegerer/phpstan-typo3": "^1.10",
"friendsofphp/php-cs-fixer": "^3.61",
"typo3/coding-standards": "^0.8.0",
"ssch/typo3-rector": "^2.6"
},
"suggest": {
"contentblocks/content-blocks": "Define webcomponents as content blocks"
},
"config": {
"allow-plugins": true
},
"scripts": {
"lint": [
"@php-cs-fixer",
"@phpstan",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix --config=./.github/.php-cs-fixer.dist.php",
"phpstan": "phpstan analyse --configuration=./.github/phpstan.neon",
"rector": "rector process --config=./.github/rector.php"
}
}