forked from thekordy/ticketit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (31 loc) · 919 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
{
"name": "kordy/ticketit",
"description": "A simple helpdesk tickets system for Laravel 5.1, 5.2, 5.3 and 5.4 which integrates smoothly with Laravel default users and auth system",
"type": "laravel-package",
"keywords": ["laravel","helpdesk", "ticket", "support"],
"require": {
"laravel/framework": "^5.1",
"laravelcollective/html": "^5.1",
"illuminate/support": "^5.1",
"yajra/laravel-datatables-oracle": "^6.0|^7.0",
"jenssegers/date": "^3.0",
"mews/purifier": "^2.0",
"doctrine/dbal": "^2.5"
},
"license": "MIT",
"authors": [
{
"name": "Ahmed Kordy",
"email": "[email protected]"
},
{
"name": "Balázs Kovács",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Kordy\\Ticketit\\": "src"
}
}
}