-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.28 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
{
"name": "sypets/cal2calendarize",
"description": "Migrate cal plugins to calendarize",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Sybille Peters",
"email": "sypets@gmx.de"
}
],
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"typo3/cms-core": "^9.5.30 || ^10.4.20",
"typo3/cms-extbase": "^9.5.30 || ^10.4.20"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19.3",
"phpstan/phpstan": "^1.8.0"
},
"extra": {
"typo3/cms": {
"extension-key": "cal2calendarize",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"Sypets\\Cal2calendarize\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Sypets\\Cal2calendarize\\Tests\\": "Tests"
}
},
"scripts": {
"ci:php:cs-fixer-check": ["php -dxdebug.mode=off .Build/bin/php-cs-fixer fix -v --dry-run --diff --diff-format udiff --path-mode intersection --config=Build/.php-cs-fixer.php ."],
"ci:php:cs-fixer-fix": ["php -dxdebug.mode=off .Build/bin/php-cs-fixer fix -v --path-mode intersection --config=Build/.php-cs-fixer.php ."]
}
}