-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
35 lines (35 loc) · 988 Bytes
/
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
{
"name": "supersaas/api-client",
"version": "2.0.1",
"description": "Online bookings/appointments/calendars using the SuperSaaS scheduling platform. The SuperSaaS API provides services that can be used to add online booking and scheduling functionality to an existing website or CRM software.",
"homepage": "https://www.supersaas.com",
"license": "MIT",
"authors": [
{
"name": "Kaarle Kulvik",
"email": "[email protected]"
}
],
"keywords": [
"online appointment schedule", "booking calendar", "appointment book", "reservation system",
"scheduling software", "online booking system", "scheduling system", "business calendar",
"supersaas"
],
"require" : {
"php": ">=8.4"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"SuperSaaS\\": "src/SuperSaaS/"
}
},
"autoload-dev": {
"psr-4": {
"SuperSaaS\\Tests\\": "tests/"
}
}
}