-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·74 lines (74 loc) · 2.2 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
{
"name": "slub/mpdb-core",
"type": "typo3-cms-extension",
"description": "This extension provides the functionality of the database developed in the course of the DFG project Geschmacksbildung und Verlagspolitik.",
"authors": [
{
"name": "Matthias Richter",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^11",
"typo3/cms-reports": "^11",
"elasticsearch/elasticsearch": "^8",
"slub/dm-ont": "@dev",
"fluidtypo3/vhs": "^6",
"illuminate/collections": "^8",
"illuminate/support": "^8"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"php-http/discovery": true
},
"vendor-dir": "vendor",
"bin-dir": "bin"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1",
"typo3/testing-framework": "^7"
},
"autoload": {
"psr-4": {
"Slub\\MpdbCore\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Slub\\MpdbCore\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"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 -b docker" ]
},
"extra": {
"typo3/cms": {
"extension-key": "mpdb_core",
"ignore-as-root": false,
"web-dir": ".Build/Web"
}
},
"repositories": {
"dmnorm": {
"type": "git",
"url": "https://github.com/dikastes/dmnorm"
},
"dmont": {
"type": "git",
"url": "https://github.com/dikastes/dmont"
}
},
"minimum-stability": "dev"
}