-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
53 lines (53 loc) · 1.28 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
{
"name": "judopay/judopay-sdk",
"type": "library",
"description": "SDK for the Judopay API",
"keywords": [
"payment"
],
"homepage": "https://www.judopay.com/docs",
"license": "MIT",
"authors": [
{
"name": "Judopay",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [],
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "~6.0 | ^7.0",
"pimple/pimple": "~3.0",
"psr/log": "^1.0",
"ext-openssl": ">=0.0.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpspec/phpspec": "^2.0",
"bossa/phpspec2-expect": "~1.0",
"squizlabs/php_codesniffer": "^2.0",
"phpunit/phpunit": "^5.0",
"symfony/finder": "~2.1",
"symfony/console": "~2.3",
"symfony/process": "^2.6",
"symfony/yaml": "~2.1",
"phpdocumentor/reflection-docblock": "^2.0"
},
"autoload": {
"psr-4": {
"Judopay\\": "src/Judopay"
},
"files": [
"src/Judopay.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"spec\\": "spec/"
}
}
}