-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
46 lines (46 loc) · 1.31 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
{
"name": "clickstorm/cs-file-meta-fill",
"type": "typo3-cms-extension",
"license": "GPL-3.0",
"description": "Automatically generate fluent sys_file_metadata like alternative text",
"authors": [
{
"name": "Pascale Beier",
"role": "Developer"
}
],
"require": {
"php": ">= 7.0, < 7.5",
"typo3/cms-core": "^10.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nimut/testing-framework": "^1.0 || ^2.0 || ^3.0 || ^4.0"
},
"autoload": {
"psr-4": {
"Clickstorm\\CsFileMetaFill\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Clickstorm\\CsFileMetaFill\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/cs-file-meta-fill": "self.version"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p public/typo3conf/ext/",
"[ -L public/typo3conf/ext/cs_file_meta_fill ] || ln -snvf ../../../. public/typo3conf/ext/cs_file_meta_fill"
],
"fix-style": "php-cs-fixer fix --config=Build/.php_cs --using-cache=no",
"check-style": "php-cs-fixer fix --dry-run --config=Build/.php_cs --using-cache=no"
},
"extra": {
"typo3/cms": {
"web-dir": "public"
}
}
}