-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
38 lines (38 loc) · 946 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
{
"name": "b13/justincase",
"type": "typo3-cms-extension",
"description": "With incoming URLs, it does not matter if they are upper/lowercase, they just work.",
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^11.5 || ^12.4 || ^13.1"
},
"replace": {
"typo3-ter/justincase": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "justincase"
}
},
"autoload": {
"psr-4": {
"B13\\JustInCase\\": "src/"
}
},
"require-dev": {
"typo3/coding-standards": "^0.5.5",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/tailor": "^1.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"php:cs": "@composer exec 'php-cs-fixer fix --config=php-cs-fixer.php'",
"php:phpstan": "@composer exec 'phpstan analyse -c phpstan.neon'"
}
}