-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.42 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
{
"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": ">=8.2",
"composer/ca-bundle": "^1.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5",
"nesbot/carbon": "^3.0",
"symfony/cache": "^5.4|^6.0|^7.0",
"web-token/jwt-library": "^4.0",
"league/uri": "^7.5",
"league/uri-components": "^7.5",
"phpseclib/phpseclib": "^3.0"
},
"conflict": {
"web-token/jwt-checker": "*",
"web-token/jwt-signature": "*",
"web-token/jwt-signature-algorithm-ecdsa": "*"
},
"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": "^11.2",
"spatie/phpunit-snapshot-assertions": "^5.0"
}
}