forked from eveseat-plugins/seat-billing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 953 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
{
"name": "recursivetree/seat-billing",
"description": "Plugin to assist with corp/alliance billing statements",
"type": "seat-plugin",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Denngarr B'tarn",
"email": "[email protected]"
},
{
"name": "recursivetree",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Denngarr\\Seat\\Billing\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Denngarr\\Seat\\Billing\\BillingServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"eveseat/services": "^5.0.1",
"laravel/framework": "^10.0",
"eveseat/eveapi": "^5.0.1",
"eveseat/web": "^5.0.1",
"recursivetree/seat-treelib": "^2.1.3"
}
}