forked from langleyfoxall/xero-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 893 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": "langleyfoxall/xero-laravel",
"description": "💸 Access the Xero accounting system using an Eloquent-like syntax",
"type": "library",
"license": "LGPL-3.0-only",
"keywords": [
"xero",
"php",
"laravel",
"eloquent",
"accounting"
],
"require": {
"php":">=7.1",
"laravel/framework": "^5.1||^6.0||^7.0||^8.0",
"calcinai/xero-php": "^2.2.2"
},
"autoload": {
"psr-4": {
"LangleyFoxall\\XeroLaravel\\": "src/"
}
},
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]",
"role": "Maintainer"
}
],
"extra": {
"laravel": {
"providers": [
"LangleyFoxall\\XeroLaravel\\Providers\\XeroLaravelServiceProvider"
]
}
}
}