-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
70 lines (70 loc) · 1.74 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
{
"name": "felixnagel/generic-gallery",
"type": "typo3-cms-extension",
"description": "TYPO3 CMS image gallery extension. One gallery to rule them all. Extbase & Fluid driven for use with any gallery / slide / rotate plugin.",
"homepage": "https://extensions.typo3.org/extension/generic_gallery",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/fnagel/generic-gallery/issues",
"docs": "https://docs.typo3.org/p/felixnagel/generic-gallery/main/en-us",
"source": "https://github.com/fnagel/generic-gallery"
},
"keywords": [
"TYPO3 CMS",
"gallery",
"image",
"slider",
"lightbox",
"extbase",
"fluid"
],
"require": {
"php": "^8.1",
"typo3/cms-core": "^12"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.12",
"php-parallel-lint/php-parallel-lint": "^1.3",
"ssch/typo3-rector": "^1.2"
},
"suggest": {
"typo3/cms-filemetadata": "*",
"fab/metadata": "^2.3",
"causal/extractor": "^1.5 || ^2.0"
},
"autoload": {
"psr-4": {
"FelixNagel\\GenericGallery\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FelixNagel\\GenericGallery\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "generic_gallery"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"test": [
"@test-php-lint",
"@test-php-cs-fixer"
],
"test-php-lint": [
"@php vendor/bin/parallel-lint ./Classes/",
"@php vendor/bin/parallel-lint ./Configuration/TCA/"
],
"test-php-cs-fixer": [
"@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --dry-run ./Classes/",
"@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --dry-run ./Configuration/"
]
}
}