-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 843 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 843 Bytes
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
{
"name": "hdnet/fal-celum",
"type": "typo3-cms-extension",
"description": "Provides a smart Celum driver integration for TYPO3.",
"keywords": [
"celum",
"fal"
],
"require": {
"php": "^7.4||^8.0",
"typo3/cms-core": "^10.4||^11.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14"
},
"replace": {
"hdnet/fal-celum": "self.version"
},
"autoload": {
"psr-4": {
"HDNET\\FalCelum\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"Package": {
"partOfMinimalUsableSystem": true
},
"extension-key": "fal_celum"
}
},
"scripts": {
"code": [
"@tool:php-cs-fixer"
],
"tool:php-cs-fixer": [
"php-cs-fixer fix --config .phpcs"
]
}
}