-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomposer.json
39 lines (39 loc) · 1.16 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
{
"name": "panichd/panichd",
"description": "Ticketing system for Laravel (from 5 to 8). Allows to create new tickets via form only. Includes file attachments, ticket tags, filtering, scheduling and e-mail notifications.",
"type": "laravel-package",
"keywords": ["ticketing", "helpdesk", "laravel", "laravel-package", "laravel-7-package"],
"require": {
"laravel/framework": "^5.1|^6.0|^7.0|^8.0",
"laravelcollective/html": "^5.1|^6.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0",
"intervention/image": "^2.5",
"yajra/laravel-datatables-oracle": "^6.0 || ^7.0 || ^8.0 || ^9.11",
"jenssegers/date": "^4.0",
"mews/purifier": "^2.0|^3.2",
"doctrine/dbal": "^2.10"
},
"license": "MIT",
"authors": [
{
"name": "ManelGP",
"email": "[email protected]"
},
{
"name": "XaviQV",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PanicHD\\PanicHD\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"PanicHD\\PanicHD\\PanicHDServiceProvider"
]
}
}
}