forked from a-r-m-i-n/dce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 3.12 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 3.12 KB
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
{
"name": "t3/dce",
"type": "typo3-cms-extension",
"description": "Best FlexForm based content elements since 2012. With TCA mapping feature, simple backend view and much more features which makes it super easy to create own content element types.",
"keywords": [
"TYPO3 CMS",
"DCE",
"Content elements",
"Dynamic Content Elements"
],
"homepage": "https://extensions.typo3.org/extension/dce/",
"support": {
"source": "https://github.com/a-r-m-i-n/dce",
"docs": "https://docs.typo3.org/typo3cms/extensions/dce/",
"issues": "https://github.com/a-r-m-i-n/dce/issues",
"forum": "https://www.facebook.com/TYPO3.DCE.Extension/"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Armin Vieweg",
"role": "Developer",
"email": "armin@v.ieweg.de"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-dom": "*",
"typo3/cms-core": "^12.4 || ^13"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"friendsofphp/php-cs-fixer": "^3.69",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-doctrine": "^2.0",
"saschaegerer/phpstan-typo3": "^2.0",
"helmich/typo3-typoscript-lint": "^3.3",
"typo3/cms-backend": "^12.4 || ^13",
"typo3/cms-install": "^12.4 || ^13",
"typo3/cms-linkvalidator": "^12.4 || ^13",
"typo3/cms-seo": "^12.4 || ^13"
},
"suggest": {
"b13/container": "Brings clean container functionality to TYPO3 CMS, supported by DCE."
},
"autoload": {
"psr-4": {
"T3\\Dce\\": "Classes"
}
},
"replace": {
"arminvieweg/dce": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "dce",
"Package": {
"serviceProvider": "T3\\Dce\\ServiceProvider",
"protected": false,
"partOfFactoryDefault": true,
"partOfMinimalUsableSystem": true
}
}
},
"scripts": {
"check": [
"@editorconfig-check",
"@phpcs",
"@phpstan",
"@typoscript-lint",
"@composer validate --strict --no-check-version --no-check-all --no-check-publish"
],
"fix": [
"@editorconfig-fix",
"@phpcs:fix",
"@phpstan",
"@typoscript-lint"
],
"editorconfig-check": "ec -g -u",
"editorconfig-fix": "ec -g --fix",
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config .build/php-cs-fixer.php --ansi --verbose --diff --dry-run -- Classes",
"phpcs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config .build/php-cs-fixer.php --ansi -- Classes",
"phpstan": "phpstan analyse -c .build/phpstan.neon -l 5 -- Classes",
"typoscript-lint": "typoscript-lint --fail-on-warnings -c .build/typoscript-lint.yaml -- Configuration"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
}
}