forked from reachweb/statamic-resrv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.96 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 1.96 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "reachweb/statamic-resrv",
"description": "A booking engine for Statamic. Supports availability calendar and online reservations.",
"keywords": [
"Statamic",
"Resrv",
"Resrv App",
"booking",
"reservations",
"availability"
],
"homepage": "https://resrv.dev",
"license": "proprietary",
"type": "statamic-addon",
"authors": [
{
"name": "Iosif Chatzimichail",
"email": "iosif@reach.gr",
"role": "Developer"
}
],
"support": {
"email": "info@reach.gr"
},
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.0 || ^4.0",
"laravel/framework": "^10.0 || ^11.00",
"illuminate/support": "^10.0 || ^11.0",
"statamic/cms": "^5.0.0",
"stripe/stripe-php": "^7.77",
"moneyphp/money": "^4.0",
"spatie/simple-excel": "^3.2",
"edalzell/forma": "^3.0",
"livewire/livewire": "^3.5",
"jonassiewertsen/statamic-livewire": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0",
"orchestra/testbench": "^8.19 || ^9.0",
"laravel/pint": "^1.15",
"spatie/laravel-ray": "^1.0"
},
"autoload": {
"psr-4": {
"Reach\\StatamicResrv\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Reach\\StatamicResrv\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"statamic": {
"name": "Statamic Resrv",
"description": "A reservation engine for Statamic"
},
"laravel": {
"providers": [
"Reach\\StatamicResrv\\StatamicResrvServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}