forked from eveseat/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 901 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
33
34
35
36
37
38
39
40
41
{
"name": "eveseat/web",
"description": "SeAT Web Interface",
"license": "GPL-2.0",
"authors": [
{
"name": "Leon Jacobs",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Seat\\Web\\": "src/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"laravel/framework": "5.5.*",
"laravel/horizon": "^1.0",
"laravel/tinker": "~1.0",
"laravel/socialite": "^3.0",
"eveseat/eseye": "~1",
"eveseat/eveapi": "~3",
"eveseat/services": "~3",
"league/csv": "^9.1",
"guzzlehttp/guzzle": "^6.3",
"yajra/laravel-datatables-oracle": "~8",
"yajra/laravel-datatables-buttons": "^4.0",
"components/font-awesome": "^4.7",
"erusev/parsedown": "^1.7"
},
"extra": {
"laravel": {
"providers": [
"Seat\\Web\\WebServiceProvider"
]
}
}
}