-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·54 lines (54 loc) · 1.27 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
{
"name": "slub/dm-ont",
"type": "typo3-cms-extension",
"description": "The Dresden module for ontology management",
"authors": [
{
"name": "Matthias Richter",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^11",
"fluidtypo3/vhs": "^6",
"slub/dm-ad": "@dev",
"illuminate/collections": "^8"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require-dev": {
"phpunit/phpunit": "^8",
"typo3/testing-framework": "^4.11.1"
},
"autoload": {
"psr-4": {
"Slub\\DmOnt\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Slub\\DmOnt\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"repositories": {
"dmad": "https://github.com/dikastes/dmad"
},
"replace": {
"slub/dmont": "self.version",
"typo3-ter/dmont": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "dm_ont",
"ignore-as-root": false,
"web-dir": ".Build/Web"
}
}
}