-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
70 lines (70 loc) · 1.7 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
{
"name": "undkonsorten/addressmgmt",
"type": "typo3-cms-extension",
"description": "Address Management",
"homepage": "https://www.undkonsorten.com",
"authors": [
{
"name": "Eike Starkmann",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Developer"
},
{
"name": "Felix Althaus",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Developer"
},
{
"name": "Thomas Alboth",
"email": "[email protected]",
"homepage": "http://undkonsorten.com",
"role": "Product Owner"
}
],
"license": ["GPL-2.0+"],
"keywords": ["address", "TYPO3", "contacts"],
"support": {
"issues": "https://support.undkonsorten.com/projects/events"
},
"require": {
"typo3/cms-core": "^11.5 || ^12.4"
},
"suggest": {
"in2code/femanager": "^7.0"
},
"autoload": {
"psr-4": {
"Undkonsorten\\Addressmgmt\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Undkonsorten\\Addressmgmt\\Tests\\": "Tests"
}
},
"scripts": {
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/Web/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/Web/typo3conf/ext/addressmgmt\") || symlink(__DIR__,$extFolder);'"
],
"test:unit": "phpunit",
"post-autoload-dump": [
"@link-extension"
]
},
"config": {
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "addressmgmt",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"branch-alias":{
"dev-main": "6.1.x-dev"
}
}
}