-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 922 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 922 Bytes
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
{
"name": "ipagdevs/ipag-sdk-php",
"description": "",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Ipag\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ipag\\Sdk\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": ">=6.0",
"kubinyete/assertation": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/polyfill-php81": "^1.28",
"symfony/polyfill-php80": "^1.28"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"fakerphp/faker": "^1.23",
"phpunit/phpunit": "^9.6",
"phpunit/php-code-coverage": "^9.2.13"
},
"config": {
"platform": {
"php": "7.4.33"
},
"audit": {
"ignore": {
"PKSA-z3gr-8qht-p93v": "*"
}
}
}
}