-
Notifications
You must be signed in to change notification settings - Fork 78
/
composer.json
56 lines (56 loc) · 1.17 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
47
48
49
50
51
52
53
54
55
56
{
"name": "php-twinfield/twinfield",
"type": "library",
"description": "Library for using the Twinfield Soap Service.",
"keywords": [
"twinfield"
],
"homepage": "https://github.com/php-twinfield/twinfield",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Remco Tolsma",
"email": "[email protected]"
},
{
"name": "Leon Rowland",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"replace": {
"pronamic/twinfield": "*"
},
"require": {
"php": ">=7.3",
"ext-dom": "*",
"ext-json": "*",
"ext-soap": "*",
"moneyphp/money": "^3.0 || ^4.0",
"myclabs/php-enum": "^1.5",
"psr/http-message": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"webmozart/assert": "^1.2"
},
"suggest": {
"league/oauth2-client": "If you want to use OAuth to login"
},
"autoload": {
"psr-4": {
"PhpTwinfield\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"eloquent/liberator": "^2.0",
"league/oauth2-client": "^2.2",
"phpstan/phpstan": "^0.12.88",
"phpunit/phpunit": "^9.5"
}
}