-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 966 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
{
"name": "lochmueller/custom-shortcut",
"type": "typo3-cms-extension",
"description": "Add custom shortcut types to the page properties.",
"require": {
"php": "^7.4||^8.0",
"typo3/cms-core": "^10.4||^11.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13"
},
"autoload": {
"psr-4": {
"HDNET\\CustomShortcut\\": "Classes/"
}
},
"homepage": "https://github.com/lochmueller/custom_shortcut",
"license": "GPL-2.0-or-later",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "custom_shortcut",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"scripts": {
"code": [
"php-cs-fixer fix --config Resources/Private/Build/PhpCsFixer.php --cache-file=.Build/phpcs.cache"
]
}
}