-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.46 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
{
"name": "theline/typo3-lottie",
"description": "TYPO3 CMS extension to enable rendering of Lottie/Bodymovin animations in frontend.",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"lottie",
"bodymovin",
"After Effects"
],
"authors": [
{
"name": "theLine",
"email": "[email protected]"
}
],
"license": "LGPL-3.0-or-later",
"require": {
"php": ">=7.4 || >=8.0",
"typo3/cms-core": "^11.5",
"typo3/cms-filemetadata": "^11.5",
"ext-json": "*"
},
"require-dev": {
"typo3/cms-backend": "*",
"typo3/cms-filelist": "*",
"typo3/cms-fluid-styled-content": "*",
"typo3/cms-frontend": "*",
"typo3/cms-impexp": "*",
"typo3/cms-install": "*",
"typo3/cms-lowlevel": "*",
"typo3/cms-recordlist": "*",
"typo3/cms-tstemplate": "*",
"php-parallel-lint/php-parallel-lint": "^1.0",
"typo3/coding-standards": "^0.7 || ^0.8",
"friendsofphp/php-cs-fixer": "^3.61",
"helmich/typo3-typoscript-lint": "^2.0 || ^3.2"
},
"autoload": {
"psr-4": {
"TheLine\\Lottie\\": "Classes"
}
},
"replace": {
"theline/typo3-lottie": "self.version",
"typo3-ter/lottie": "self.version"
},
"scripts": {
"_cleanup": [
"rm -rf .Build composer.lock"
],
"test": [
"@test-php-lint",
"@test-phpcs",
"@test-typoscript-lint"
],
"test-php-lint": [
"parallel-lint ./Classes/ ./Configuration/TCA/"
],
"test-phpcs": [
"php-cs-fixer fix --dry-run -v --config=.php-cs-fixer.dist.php ./Classes/ ./Configuration/TCA/"
],
"test-phpcs-fix": [
"php-cs-fixer fix -v --config=.php-cs-fixer.dist.php ./Classes/ ./Configuration/TCA/"
],
"test-typoscript-lint": [
"typoscript-lint -c Configuration/TypoScriptLintConfig.yaml -n --fail-on-warnings ./Configuration/TypoScript/"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"web-dir": ".Build",
"extension-key": "lottie"
}
}
}