-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.84 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
{
"name": "xima/xima-typo3-recent-updates",
"description": "A widget for the dashboard to display new and recently updated elements.",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Konrad Michalik",
"email": "konrad.michalik@xima.de",
"role": "Developer"
},
{
"name": "XIMA MEDIA GmbH",
"email": "kontakt@xima.de"
}
],
"require": {
"php": "^8.1",
"typo3/cms-backend": "^11.5 || ^12.0 || ^13.0",
"typo3/cms-core": "^11.5 || ^12.0 || ^13.0",
"typo3/cms-dashboard": "^11.5 || ^12.0 || ^13.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.52",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.10",
"symfony/translation": "^6.3 || ^7.0"
},
"autoload": {
"psr-4": {
"Xima\\XimaTypo3RecentUpdates\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "xima_typo3_recent_updates"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": false,
"typo3/cms-composer-installers": false
}
},
"scripts": {
"php:lint": "find *.php . -name '*.php' ! -path './vendor/*' ! -path './var/*' ! -path '*node_modules/*' -print0 | xargs -0 -n 1 -P 4 php -l",
"php:fixer": "php vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "php vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline --memory-limit=2G",
"xml:lint": "find . -name '*.xlf' ! -path './vendor/*' ! -path './var/*' | xargs -r xmllint --schema vendor/symfony/translation/Resources/schemas/xliff-core-1.2-transitional.xsd --noout"
}
}