-
Notifications
You must be signed in to change notification settings - Fork 70
/
composer.json
32 lines (32 loc) · 1005 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
{
"name": "jms/payment-paypal-bundle",
"type": "symfony-bundle",
"description": "Payment Bundle providing access to the PayPal API",
"keywords": ["payment", "paypal"],
"homepage": "http://jmsyst.com/bundles/JMSPaymentPaypalBundle",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"symfony/browser-kit": ">=2.3 <5.0",
"symfony/config": ">=2.3 <5.0",
"symfony/dependency-injection": ">=2.3 <5.0",
"symfony/form": ">=2.3 <5.0",
"symfony/http-foundation": ">=2.3 <5.0",
"symfony/http-kernel": ">=2.3 <5.0",
"jms/payment-core-bundle": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.4",
"symfony/phpunit-bridge": "~2.7"
},
"autoload": {
"psr-0": { "JMS\\Payment\\PaypalBundle": "" }
},
"target-dir": "JMS/Payment/PaypalBundle"
}