-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.11 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
{
"name": "hydra-booking/hydra-booking",
"description": "Create a booking / Appointment Form using Contact Form 7. You can insert Calendar, Time on the form and manage your booking. User can pay using WooCommerce. ",
"type": "project",
"require": {
"sabre/dav": "^4.6",
"php": ">=7.2",
"appsero/client": "^2.0"
},
"autoload": {
"psr-4": {
"HydraBooking\\Admin\\": "admin/",
"HydraBooking\\DB\\": "includes/database/",
"HydraBooking\\Services\\": "includes/services/",
"HydraBooking\\PostType\\": "includes/post-type/",
"HydraBooking\\Hooks\\": "includes/hooks/",
"HydraBooking\\Migration\\": "includes/migration/",
"HydraBooking\\App\\": "app/"
}
},
"require-dev": {
"wp-coding-standards/wpcs": "3.0"
},
"scripts": {
"lint": "phpcs",
"lint-fix": "phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.2.0"
}
}
}