-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
31 lines (31 loc) · 902 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
{
"name": "slightlydiff/yii2-xero",
"description": "An extension for using the Xero API from within Yii2",
"type": "yii2-extension",
"keywords": ["yii2","extension","xero","api"],
"license": "Apache-2.0",
"authors": [
{
"name": "Slightly Different Limited",
"email": "[email protected]",
"homepage": "https://www.slightlydifferent.co.nz"
}
],
"support": {
"issues": "https://github.com/slightlydiff/yii2-xero/issues?state=open",
"source": "https://github.com/slightlydiff/yii2-xero"
},
"require": {
"yiisoft/yii2": "*",
"php": ">=5.5"
},
"autoload": {
"files": ["xerooauth/lib/XeroOAuth.php"],
"psr-4": {
"slightlydiff\\xero\\": "src/"
}
},
"extra": {
"bootstrap": "slightlydiff\\xero\\Bootstrap"
}
}