forked from seberm/nette-paypal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (40 loc) · 1.01 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
{
"name":"flame/paypal-component",
"description":"PayPal basic API written in Nette",
"keywords":["api", "paypal", "nette", "payments"],
"homepage":"https://github.com/flame-org/PayPal-Component",
"license": "BSD-2-Clause-FreeBSD",
"minimum-stability":"dev",
"support":{
"email":"[email protected]",
"issues":"https://github.com/flame-org/PayPal-Component/issues"
},
"authors":[
{
"name":"Otto Šabart",
"homepage":"http://seberm.com",
"email":"[email protected]"
},
{
"name":"Jiří Šifalda",
"homepage":"http://jsifalda.name/",
"email":"[email protected]"
}
],
"require":{
"php":">=5.3.2",
"ext-curl":"*",
"flame/framework": ">=2.0.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"config": {
"vendor-dir": "libs"
},
"autoload":{
"psr-0":{
"Flame":""
}
}
}