-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.57 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": "slub/liszt-common",
"description": "common tools for the Liszt catalog raisonné",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^12",
"elasticsearch/elasticsearch": "^8",
"illuminate/collections": "^11",
"illuminate/support": "^11",
"quellenform/t3x-iconpack": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9.4",
"typo3/testing-framework": "^7"
},
"autoload": {
"psr-4": {
"Slub\\LisztCommon\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Slub\\LisztCommon\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "liszt_common"
}
},
"scripts": {
"ci": [ "@ci:install", "@ci:php", "@ci:tests" ],
"ci:php": [ "@ci:php:stan" ],
"ci:php:stan": [ "Build/Scripts/runTests.sh -s phpstan -b docker" ],
"ci:tests": [ "@ci:tests:unit", "@ci:tests:functional" ],
"ci:tests:unit": [ "Build/Scripts/runTests.sh -s unit -b docker" ],
"ci:tests:functional": [ "Build/Scripts/runTests.sh -s functional -b docker" ],
"ci:install": [ "Build/Scripts/runTests.sh -s composerInstall -b docker" ]
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"php-http/discovery": true
},
"vendor-dir": "vendor",
"bin-dir": "bin"
}
}