-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathcomposer.json
63 lines (62 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jms/payment-core-bundle",
"type": "symfony-bundle",
"description": "A unified API for processing payments with Symfony",
"keywords": ["payment"],
"homepage": "http://jmspaymentcorebundle.readthedocs.io",
"license": "Apache2",
"authors": [
{
"name": "Johannes M. Schmitt",
"email": "[email protected]"
},
{
"name": "Paulo Rodrigues Pinto",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/schmittjoh/JMSPaymentCoreBundle/contributors"
}
],
"require": {
"php": ">=5.6",
"doctrine/common": "~2.3",
"doctrine/dbal": "~2.3",
"doctrine/orm": "~2.3",
"symfony/browser-kit": ">=2.3 <5.0",
"symfony/config": ">=2.3 <5.0",
"symfony/dependency-injection": ">=2.3 <5.0",
"symfony/event-dispatcher": ">=2.3 <5.0",
"symfony/form": ">=2.3 <5.0",
"symfony/options-resolver": ">=2.3 <5.0",
"symfony/http-foundation": ">=2.3 <5.0",
"symfony/http-kernel": ">=2.3 <5.0",
"symfony/validator": ">=2.3 <5.0",
"defuse/php-encryption": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.4",
"symfony/phpunit-bridge": "~2.7",
"doctrine/doctrine-bundle": "~1.6",
"sensio/framework-extra-bundle": "~3.0",
"symfony/dom-crawler": ">=2.3 <5.0",
"symfony/doctrine-bridge": ">=2.3 <5.0",
"symfony/framework-bundle": ">=2.3 <5.0",
"symfony/routing": ">=2.3 <5.0",
"symfony/templating": ">=2.3 <5.0",
"symfony/twig-bundle": ">=2.3 <5.0",
"symfony/twig-bridge": ">=2.3 <5.0",
"twig/twig": "~1.0",
"matthiasnoback/symfony-config-test": "^2.1"
},
"autoload": {
"psr-0": { "JMS\\Payment\\CoreBundle": "" }
},
"target-dir": "JMS/Payment/CoreBundle",
"extra": {
"branch-alias": {
"dev-master": "1.4-dev"
}
}
}