-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "krzysztof-gzocha/payu",
"type": "library",
"description": "Integration with PayU",
"keywords": ["integration","payu","rest","api","money","transfer"],
"homepage": "https://github.com/krzysztof-gzocha/payu",
"license": "MIT",
"authors": [
{
"name": "Krzysztof Gzocha",
"role": "Developer"
}
],
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor"
},
"require-dev": {
"phpspec/phpspec": "2.1.*",
"codeception/codeception": "2.1.*@dev",
"phpmd/phpmd" : ">=2.0.0",
"fabpot/php-cs-fixer": ">=v1.0",
"phing/phing": ">=2.4.12",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-4": {
"": "src/",
"tests\\unit\\": "tests/unit/"
}
},
"require": {
"doctrine/annotations": ">=v1.1",
"jms/serializer": ">=0.11.0",
"symfony/validator": ">=2.0.4",
"psr/log": "1.0.*@dev",
"php": ">=5.4.0",
"ext-curl": "*",
"kriswallsmith/buzz": "0.13"
}
}