-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.06 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
{
"name": "lyrasoft/event-booking",
"description": "LYRASOFT Event Booking Package",
"type": "windwalker-package",
"license": "MIT",
"autoload": {
"psr-4": {
"Lyrasoft\\EventBooking\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"authors": [
{
"name": "Simon Asika",
"email": "[email protected]"
}
],
"minimum-stability": "beta",
"require": {
"php": ">=8.2",
"lyrasoft/luna": "^2.1",
"lyrasoft/sequence": "^1.0",
"brick/math": "^0.11.0",
"chillerlan/php-qrcode": "^5.0"
},
"suggest": {
"lyrasoft/member": "Install this if you want to select tutors",
"lyrasoft/attachment": "Install this if you want to ask attender upload certificate files."
},
"extra": {
"windwalker":{
"packages": [
"Lyrasoft\\EventBooking\\EventBookingPackage"
],
"modules": [
"src/Module"
]
}
}
}