-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
45 lines (38 loc) · 973 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
37
38
39
40
41
42
43
44
45
{
"name":"seberm/paypal-component",
"description":"PayPal basic library and Nette component",
"keywords":["api", "paypal", "nette", "payments", "component"],
"homepage":"https://github.com/seberm/nette-paypal",
"license": "BSD-2-Clause-FreeBSD",
"minimum-stability":"dev",
"support":{
"email":"[email protected]"
},
"authors":[
{
"name":"Otto Šabart",
"homepage":"http://www.seberm.com",
"email":"[email protected]"
},
{
"name":"Contributors",
"homepage":"https://github.com/seberm/nette-paypal/graphs/contributors"
}
],
"require":{
"php": ">=5.6",
"ext-curl": "*",
"nette/component-model": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"config": {
"vendor-dir": "libs"
},
"autoload":{
"psr-0":{
"Seberm":""
}
}
}