-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
36 lines (36 loc) · 1.08 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
{
"name" : "leonardothibes/payu",
"description": "PHP library for integration access to payU payment gateway",
"homepage" : "http://documentup.com/leonardothibes/payU",
"keywords" : ["payu","payment"],
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name" : "Leonardo Thibes",
"email": "[email protected]"
}
],
"require": {
"php" : ">=5.3",
"ext-curl": "*"
},
"require-dev": {
"leonardothibes/tbs" : ">=1@stable",
"squizlabs/php_codesniffer": ">=1.4@stable",
"phpunit/phpunit" : ">=4.0@stable",
"phpunit/php-invoker" : "*",
"phpunit/phpunit-story" : "*",
"sebastian/diff" : "*",
"phploc/phploc" : "*",
"phpmd/phpmd" : ">=2.1@stable",
"sebastian/phpcpd" : ">=2.0@stable",
"sebastian/phpdcd" : ">=1.0@stable"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {"": "src"}
}
}