-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.31 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
{
"name": "optiosteam/payconiq-client-php",
"description": "Payconiq API client library for PHP developed by Optios.",
"keywords": [
"payconiq",
"client",
"api",
"php"
],
"support": {
"issues": "https://github.com/optiosteam/payconiq-client-php/issues",
"source": "https://github.com/optiosteam/payconiq-client-php"
},
"license": "MIT",
"authors": [
{
"name": "Optios BV",
"email": "dev@optios.net"
}
],
"require": {
"php": ">=7.2|>=8.0",
"composer/ca-bundle": "^1.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"league/url": "^3.3",
"nesbot/carbon": "^2.41",
"symfony/cache": "^3.4|^4.0|^5.0|^6.0",
"web-token/jwt-checker": "^2.2",
"web-token/jwt-signature": "^2.2",
"web-token/jwt-signature-algorithm-ecdsa": "^2.2"
},
"autoload": {
"psr-4": {
"Optios\\Payconiq\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Optios\\Payconiq\\": "tests/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.9",
"phpunit/phpunit": "^8.5",
"spatie/phpunit-snapshot-assertions": "3.0|4.2.15"
}
}