-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.42 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
{
"name": "markocupic/resource-booking-bundle",
"description": "Resource-booking-plugin for schools or other institutions. Book a resource for a predefined amount of time. This extension is a plugin for Contao CMS.",
"keywords": [
"contao",
"resource",
"room",
"booking",
"school"
],
"type": "contao-module",
"license": "MIT",
"authors": [
{
"name": "Marko Cupic",
"email": "[email protected]",
"homepage": "https://github.com/markocupic",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/markocupic/resource-booking-bundle/issues",
"source": "https://github.com/markocupic/resource-booking-bundle"
},
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"contao/core-bundle": "^4.13 || ^5.0",
"markocupic/contao-component-bootstrap": "^5.0",
"markocupic/contao-twig-assets": "^1.1",
"ramsey/uuid": "^3.0 || ^4.0",
"symfony/http-foundation": "^6.0 || ^7.0",
"symfony/security-bundle": "^6.0 || ^7.0"
},
"require-dev": {
"contao/easy-coding-standard": "^5.0"
},
"autoload": {
"psr-4": {
"Markocupic\\ResourceBookingBundle\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "Markocupic\\ResourceBookingBundle\\ContaoManager\\Plugin"
}
}