-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
99 lines (99 loc) · 2.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "freshworkx/bm-image-gallery",
"description": "Simple gallery using FileCollections.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"Images",
"Gallery",
"Videos",
"Lightbox"
],
"authors": [
{
"name": "Jens Neumann",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/freshworkx/typo3-image-gallery/issues",
"source": "https://github.com/freshworkx/typo3-image-gallery",
"docs": "https://docs.typo3.org/p/freshworkx/bm-image-gallery/master/en-us/"
},
"require": {
"ext-pdo": "*",
"typo3/cms-backend": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-frontend": "^12.4",
"typo3/cms-install": "^12.4"
},
"require-dev": {
"enlightn/security-checker": "^1.10.0 || ^2",
"ergebnis/composer-normalize": "^2.42",
"saschaegerer/phpstan-typo3": "^1.10",
"squizlabs/php_codesniffer": "^3.9",
"ssch/typo3-rector": "^2.2",
"typo3/cms-lowlevel": "^12.4"
},
"replace": {
"leuchtfeuer/bm-image-gallery": "self.version",
"typo3-ter/bm-image-gallery": "self.version"
},
"suggest": {
"typo3/cms-fluid-styled-content": "^12.4"
},
"autoload": {
"psr-4": {
"Freshworkx\\BmImageGallery\\": "Classes"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
},
"typo3/cms": {
"extension-key": "bm_image_gallery",
"web-dir": ".build/public"
}
},
"scripts": {
"code-quality": [
"@composer-normalize",
"@security-checker",
"@phpcs",
"@phpstan",
"@rector"
],
"composer-normalize": [
"composer normalize --dry-run --no-check-lock --no-update-lock"
],
"phpcs": [
"phpcs --standard=PSR12 Classes/ Configuration/"
],
"phpstan": [
"phpstan analyse -c Build/phpstan.neon"
],
"rector": [
"rector process --config Build/rector.php --dry-run"
],
"security-checker": [
"security-checker security:check"
]
}
}