forked from eveseat/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 836 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
42
{
"name": "eveseat/console",
"description": "SeAT Console Components",
"license": "GPL-2.0",
"authors": [
{
"name": "Leon Jacobs",
"email": "leonja511@gmail.com"
}
],
"autoload": {
"psr-4": {
"Seat\\Console\\": "src/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"repositories" : [
{
"type": "vcs",
"url": "https://github.com/herpaderpaldent/eveapi"
},
{
"type": "vcs",
"url": "https://github.com/herpaderpaldent/services"
}
],
"require": {
"php": ">=7.1",
"laravel/framework": "5.5.*",
"eveseat/eveapi": "dev-master",
"eveseat/services": "dev-master",
"guzzlehttp/guzzle": "^6.3"
},
"extra": {
"laravel": {
"providers": [
"Seat\\Console\\ConsoleServiceProvider"
]
}
}
}