-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.51 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
{
"name": "ubl/booking",
"type": "typo3-cms-extension",
"description": "Managed bookings of rooms for fe users",
"keywords": [
"TYPO3",
"CMS",
"extension",
"booking"
],
"homepage": "https://git.sc.uni-leipzig.de/ubl/bdd_dev/webmasterei/tx-booking",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://git.sc.uni-leipzig.de/ubl/bdd_dev/webmasterei/tx-booking/issues"
},
"authors": [{
"name": "Ulf Seltmann",
"email": "seltmann@ub.uni-leipzig.de",
"role": "Developer"
}],
"repositories": [{
"type": "composer",
"url": "https://composer.typo3.org/"
}],
"require": {
"php": ">=7.4.0",
"typo3/cms": "^9.5 || ^10.4"
},
"require-dev": {
"nimut/testing-framework": "^6.0",
"mikey179/vfsstream": "^1.6.7",
"phpunit/phpunit": "^8.5.22||^9.5"
},
"autoload": {
"psr-4": {
"Ubl\\Booking\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Ubl\\Booking\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/booking ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/booking"
]
},
"extra": {
"typo3/cms": {
"extension-key": "tx-booking"
}
}
}