-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·100 lines (100 loc) · 2.58 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
100
{
"name": "rcdesign/fluid-styled-content-custom-css",
"description": "CSS fields for Fluid Styled Content",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Christian Racan",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Simon Gilli",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://www.rc-design.at",
"require": {
"typo3/cms-core": "^11.5 || ^12.4 || ^13.4",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4 || ^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "*",
"typo3-console/composer-auto-commands": "*",
"typo3-console/composer-typo3-auto-install": "*",
"typo3/cms-lowlevel": "*",
"typo3/cms-tstemplate": "*",
"typo3/coding-standards": "*"
},
"autoload": {
"psr-4": {
"Rcdesign\\RcdFscCustomCss\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "rcd_fsc_custom_css"
}
},
"scripts": {
"ci": [
"@ci:static",
"@ci:dynamic"
],
"ci:composer": [
"@ci:composer:normalize",
"@ci:composer:validate"
],
"ci:composer:normalize": "@composer normalize --ansi -n --dry-run",
"ci:composer:validate": "@composer validate --ansi -n --strict",
"ci:dynamic": [
"# No dynamic tests defined"
],
"ci:php": [
"@ci:php:cs-fixer"
],
"ci:php:cs-fixer": "@php php-cs-fixer fix -v --dry-run --diff --using-cache no",
"ci:static": [
"@ci:composer",
"@ci:php"
],
"clean": [
"rm -fr config public var vendor .php-cs-fixer.cache composer.lock || true"
],
"fix": [
"@fix:composer",
"@fix:php"
],
"fix:composer": [
"@fix:composer:normalize"
],
"fix:composer:normalize": [
"@composer normalize --ansi -n"
],
"fix:php": [
"@fix:php:cs"
],
"fix:php:cs": "@php php-cs-fixer fix"
},
"scripts-descriptions": {
"ci": "Runs all dynamic and static code checks.",
"ci:composer:normalize": "Checks the composer.json.",
"ci:dynamic": "Runs all PHPUnit tests (unit and functional).",
"ci:php": "Runs all static checks for the PHP files.",
"ci:php:cs-fixer": "Checks the code style with the PHP Coding Standards Fixer (PHP-CS-Fixer).",
"ci:static": "Runs all static code checks (syntax, style, types).",
"clean": "Clean deletes the existing TYPO3 installation and temporary files",
"fix:php": "Runs all fixers for the PHP code.",
"fix:php:cs": "Fixes the code style with PHP-CS-Fixer."
}
}