forked from eveseat-plugins/seat-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1019 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
{
"name": "recursivetree/seat-inventory",
"description": "The inventory management tool for seat",
"license": "MIT",
"authors": [
{
"name": "recursivetree",
"email": "recursivetreemail@gmail.com"
}
],
"autoload": {
"psr-4": {
"RecursiveTree\\Seat\\Inventory\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"laravel/framework": "^10.0",
"eveseat/web": "^5.0.0",
"eveseat/eveapi": "^5.0.1",
"eveseat/services": "^5.0.6",
"eveseat/notifications": "^5.0.1",
"recursivetree/seat-treelib": "^2.0",
"doctrine/dbal": "^3.6.7"
},
"extra": {
"laravel": {
"providers": [
"RecursiveTree\\Seat\\Inventory\\InventoryServiceProvider"
]
}
},
"suggest": {
"recursivetree/seat-alliance-industry": "Export missing items and directly create alliance-industry orders.",
"denngarr/seat-fitting": "Create stocks based on fittings from the seat-fitting plugin"
}
}