forked from alcohol/iso4217
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
50 lines (50 loc) · 1.18 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
{
"name": "payum/iso4217",
"description": "ISO 4217 PHP Library",
"keywords": ["ISO 4217", "ISO", "4217", "currencies", "library"],
"homepage": "https://payum.forma-pro.com/",
"license": "MIT",
"authors": [
{
"name": "Rob Bast",
"email": "rob.bast@gmail.com"
},
{
"name": "Kotlyar Maksim",
"email": "kotlyar.maksim@gmail.com"
},
{
"name": "Payum project",
"homepage": "http://payum.org/"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/Payum/contributors"
}
],
"support": {
"issues": "https://github.com/payum/iso4217/issues",
"source": "https://github.com/payum/iso4217"
},
"require": {
"php": ">=5.3"
},
"autoload": {
"psr-4": {
"Payum\\ISO4217\\": "."
}
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload-dev": {
"psr-4": {
"Payum\\ISO4217\\Tests\\": "."
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}