-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 864 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": "mradcliffe/xeroclient",
"description": "Provides a Guzzle client for use with the Xero Accounting and Payroll APIs.",
"minimum-stability": "stable",
"license": [
"MIT",
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Matthew Radcliffe",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Radcliffe\\Xero\\": "src/"
},
"exclude-from-classmap": ["/examples/"]
},
"autoload-dev": {
"psr-4": {
"Radcliffe\\Tests\\Xero\\": "tests/src/"
}
},
"require": {
"php": "^8.1",
"league/oauth2-client": "^2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7"
},
"require-dev": {
"ext-openssl": "*",
"phpunit/phpunit": "^9 || ^10",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "~3.5"
}
}