-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 852 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 852 Bytes
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
{
"name": "daacreators/creators-ticketing",
"description": "A robust and dynamic ticketing system for Filament",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jabir Khan",
"email": "hello@jabirkhan.com"
}
],
"require": {
"php": "^8.2",
"filament/filament": "^4.1|^5.1",
"illuminate/contracts": "^11.28|^12.0"
},
"autoload": {
"psr-4": {
"daacreators\\CreatorsTicketing\\": "src/",
"daacreators\\CreatorsTicketing\\Database\\Seeders\\": "database/seeders/"
}
},
"extra": {
"laravel": {
"providers": [
"daacreators\\CreatorsTicketing\\TicketingServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}