forked from calcinai/xero-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.05 KB
/
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
43
44
45
46
{
"name": "calcinai/xero-php",
"type": "library",
"description": "A client implementation of the Xero API, with a cleaner OAuth interface and ORM-like abstraction.",
"homepage": "https://github.com/calcinai/xero-php",
"license": "MIT",
"require": {
"php": ">=5.5.0",
"ok200paul/oauth2-xero": "dev-master",
"guzzlehttp/guzzle": "^6.5|^7.0",
"guzzlehttp/psr7": "^1.5|^1.6|^2.1.1",
"ext-json": "*",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.21"
},
"suggest": {
"ext-fileinfo": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"XeroPHP\\": "src/XeroPHP/"
}
},
"autoload-dev": {
"psr-4": {
"XeroPHP\\Tests\\": "tests/"
}
},
"repositories": {
"oauth2-xero": {
"type": "package",
"package": {
"name": "ok200paul/oauth2-xero",
"version": "dev-master",
"source": {
"url": "https://github.com/ok200paul/oauth2-xero.git",
"type": "git",
"reference": "origin/master"
}
}
}
}
}