forked from picqer/moneybird-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 846 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
40
41
{
"name": "picqer/moneybird-php-client",
"type": "library",
"description": "A PHP Client for the Moneybird V2 API",
"keywords": [
"api",
"php",
"moneybird"
],
"homepage": "https://github.com/picqer/moneybird-php-client",
"license": "MIT",
"authors": [
{
"name": "Stephan Groen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3.0",
"guzzlehttp/guzzle": "^6.3.1|^7.0",
"psr/http-client": "^1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.3",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Picqer\\Financials\\Moneybird\\": "src/Picqer/Financials/Moneybird"
}
},
"autoload-dev": {
"psr-4": {
"Picqer\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}