-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
89 lines (89 loc) · 2.17 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
{
"name": "example/example",
"description": "",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"readme": "README.md",
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"cweagans/composer-patches": true
},
"sort-packages": true
},
"require": {
"php": "^8.2",
"b13/container": "^2.2",
"localizationteam/l10nmgr": "^11.0.0",
"typo3/cms-core": "^11.5.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.11",
"phpspec/prophecy-phpunit": "^2.0",
"typo3/testing-framework": "^7.0.0",
"cweagans/composer-patches": "1.7.2"
},
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml",
"cs-fixer": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php",
"phpstan": "vendor/bin/phpstan analyse --level 9 ./Classes",
"unit-tests": "echo 'not implemented'",
"functional-tests": [
"vendor/bin/phpunit -c ./Tests/FunctionalTests.xml --cache-result --cache-result-file=./Tests/.functional.phpunit.result.cache --order-by=depends,defects"
],
"test:lint-only": [
"@psalm",
"@cs-fixer",
"@phpstan"
],
"test:no-services": [
"@test:lint-only",
"@unit-tests"
],
"test": [
"@test:no-services",
"@functional-tests"
]
},
"autoload": {
"psr-4": {
"Example\\Example\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Example\\Example\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "example"
},
"enable-patching": true,
"patches": {
"localizationteam/l10nmgr": {
"[FEATURE] inlineTablesConfig with parent tables other than tt_content": "patches/aa.diff"
}
}
},
"archive": {
"exclude": [
".git",
".idea",
".ddev",
"Tests",
"public",
"vendor",
"var",
".php-cs-fixer.php",
".php-cs-fixer.cache",
"composer.lock",
"psalm.xml"
]
}
}