-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.12 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
{
"name": "slub/dm-ad",
"type": "typo3-cms-extension",
"description": "The Dresden module for authority data",
"authors": [
{
"name": "Matthias Richter",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^11",
"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\\DmNorm\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"SLUB\\DmNorm\\Tests\\": "Tests"
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"replace": {
"slub/dmad": "self.version",
"typo3-ter/dmad": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "dm_ad",
"ignore-as-root": false,
"web-dir": ".Build/Web"
}
}
}