-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
81 lines (81 loc) · 2.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "paymentsuite/paymentsuite",
"description": "PaymentSuite is an easy implementation for lot of Payment Methods for Symfony projects",
"type": "library",
"keywords": ["paymentsuite", "payment", "ecommerce", "symfony"],
"license": "MIT",
"support": {
"email": "yuhu@mmoreram.com",
"forum": "https://gitter.im/paymentsuite/paymentsuite",
"source": "https://github.com/paymentsuite/paymentsuite",
"issues": "https://github.com/paymentsuite/paymentsuite/issues"
},
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/PaymentSuite/paymentsuite/contributors"
}
],
"require": {
"php": "^7.1",
"ext-openssl": "*",
"ext-json": "*",
"symfony/finder": "^4.3",
"symfony/config": "^4.3",
"symfony/framework-bundle": "^4.3",
"symfony/form": "^4.3",
"symfony/http-kernel": "^4.3",
"symfony/dependency-injection": "^4.3",
"symfony/options-resolver": "^4.3",
"mmoreram/symfony-bundle-dependencies": "^2.1",
"psr/log": "^1.0",
"twig/twig": "^2.11",
"stripe/stripe-php": "3.4.0",
"monolog/monolog": "^1.17",
"wearemarketing/paylands-php": "0.2.*",
"endelwar/gestpayws": "^1.4",
"symfony/expression-language": "^4.3",
"symfony/templating": "^4.3",
"symfony/translation": "^4.3",
"symfony/browser-kit": "^4.3"
},
"require-dev": {
"mmoreram/php-formatter": "1.3.3",
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^4.3",
"symfony/twig-bundle": "^4.3"
},
"replace": {
"paymentsuite/bankwire-bundle": "self.version",
"paymentsuite/free-payment-bundle": "self.version",
"paymentsuite/payment-core-bundle": "self.version",
"paymentsuite/paypal-web-checkout-bundle": "self.version",
"paymentsuite/redsys-bundle": "self.version",
"paymentsuite/stripe-bundle": "self.version",
"paymentsuite/paylands-bundle": "self.version",
"paymentsuite/gestpay-bundle": "self.version"
},
"autoload": {
"psr-4": {
"PaymentSuite\\": "src/PaymentSuite"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"scripts": {
"check-style": [
"vendor/bin/php-cs-fixer fix --config-file=.php_cs",
"vendor/bin/php-formatter f:h:f src",
"vendor/bin/php-formatter f:u:s src"
],
"test": "vendor/bin/phpunit"
}
}