-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.81 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
{
"name": "remind/form",
"type": "typo3-cms-extension",
"description": "REMIND - Form",
"license": [ "GPL-3.0-or-later" ],
"authors": [
{
"name": "REMIND GmbH",
"email": "technik@remind.de"
}
],
"autoload": {
"psr-4": {
"Remind\\Form\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Remind\\Form\\Tests\\": "Tests"
}
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-form": "^12.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"remind/coding-standard": "^1.0",
"saschaegerer/phpstan-typo3": "^1.10",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "rmnd_form"
}
},
"scripts": {
"phpcs": "@php ./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --report=full -n .",
"phpcbf": "@php ./vendor/bin/phpcbf --standard=phpcs.xml --extensions=php .",
"phpstan": "@php ./vendor/bin/phpstan analyse -c phpstan.neon",
"static-analysis": [
"@composer phpcs",
"@composer phpstan"
]
}
}