-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 871 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
{
"name" : "wanawork/jms-paypal-rest-bundle",
"type" : "symfony-bundle",
"description" : "Payment Bundle providing access to the PayPal REST API",
"keywords" : [
"payment",
"paypal",
"paypal REST"
],
"homepage" : "https://github.com/iBiryukov/jms-paypal-rest-bundle",
"license" : "Apache2",
"authors" : [{
"name" : "Ilya Biryukov",
"email" : "[email protected]"
}
],
"require" : {
"php" : ">=5.3.2",
"symfony/framework-bundle" : "~2.1",
"jms/payment-core-bundle" : "~1.0",
"paypal/rest-api-sdk-php" : "~0.7",
"doctrine/doctrine-bundle" : "*"
},
"require-dev" : {
"symfony/finder" : "*",
"symfony/browser-kit" : "*",
"symfony/css-selector" : "*",
"symfony/form" : "*",
"fabpot/goutte": "~1.0"
},
"autoload" : {
"psr-0" : {
"Wanawork\\JMS\\PaypalRestBundle" : ""
}
},
"target-dir" : "Wanawork/JMS/PaypalRestBundle"
}