-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 942 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
{
"minimum-stability": "dev",
"name": "dshovchko/php_easypay",
"description": "Library for the implementation of payment gateway of easypay.ua",
"keywords": ["easypay", "easypay.ua"],
"homepage": "https://github.com/dshovchko/php_EasyPay",
"license": "MIT",
"authors": [
{
"name": "Dmitry Shovchko",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/dshovchko/php_EasyPay/issues",
"source": "https://github.com/dshovchko/php_EasyPay"
},
"require": {
"php": ">=5.5.27",
"dshovchko/debulog": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"php-coveralls/php-coveralls": "2.2.x-dev"
},
"autoload": {
"psr-4": {
"EasyPay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EasyPayTest\\": "test/"
}
}
}