-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
44 lines (44 loc) · 1.46 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
{
"name": "markocupic/calendar-event-booking-bundle",
"type": "contao-bundle",
"description": "Calendar Event Booking extension for Contao CMS",
"license": "MIT",
"authors": [
{
"name": "Marko Cupic",
"homepage": "https://github.com/markocupic/calendar-event-booking-bundle"
}
],
"require": {
"php": "^8.2",
"contao/core-bundle": "^5.3",
"contao/calendar-bundle": "^5.3",
"markocupic/export_table": "^5.0",
"ramsey/uuid": "^3.0 || ^4.0",
"codefog/contao-haste": "^5.0",
"terminal42/notification_center": "^2.0"
},
"require-dev": {
"contao/easy-coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"Markocupic\\CalendarEventBookingBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"contao-components/installer": false,
"contao/manager-plugin": false,
"contao-community-alliance/composer-plugin": true
}
},
"scripts": {
"cs-fixer": "@php tools/ecs/vendor/bin/ecs check config/ contao/ src/ tests/ --config tools/ecs/config.php --fix --ansi",
"phpstan": "@php tools/phpstan/vendor/bin/phpstan analyse src tests",
"unit-tests": "@php tools/phpunit/vendor/bin/phpunit -c tools/phpunit/phpunit.xml.dist"
},
"extra": {
"contao-manager-plugin": "Markocupic\\CalendarEventBookingBundle\\ContaoManager\\Plugin"
}
}