-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
41 lines (41 loc) · 970 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": "iamport/rest-client",
"description": "아임포트(iamport) REST API 연동을 위한 PHP Client 입니다.",
"keywords": ["iamport", "pg", "결제"],
"license": "MIT",
"authors": [
{
"name": "Iamport",
"email": "[email protected]"
},
{
"name": "Wiz",
"email": "[email protected]"
}
],
"type": "library",
"version": "2.0.2",
"require": {
"php": ">=7.1.8",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "*"
},
"require-dev": {
"symfony/var-dumper": "^4.3",
"phpunit/phpunit": "^7",
"codedungeon/phpunit-result-printer": "^0.9"
},
"autoload": {
"psr-4": {
"Iamport\\RestClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iamport\\RestClient\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}