-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
114 lines (114 loc) · 3.24 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "payum/payum-server",
"type": "project",
"license": "MIT",
"description": "PHP 7.1+ Payment processing server. Setup once and rule them all",
"homepage": "https://github.com/Payum",
"authors": [
{
"name": "Kotlyar Maksim",
"email": "[email protected]"
},
{
"name": "Dmytro Sheludko",
"email": "[email protected]"
},
{
"name": "Payum project",
"homepage": "https://github.com/Payum"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Payum/PayumServer/contributors"
}
],
"require": {
"php": "^7.1",
"ext-iconv": "*",
"authorizenet/authorizenet": "^1.9",
"defuse/php-encryption": "^2.1",
"fp/klarna-invoice": "^0.1.2",
"klarna/checkout": "^4.0",
"makasim/yadm-bundle": "^0.2.1",
"mikemccabe/json-patch-php": "dev-master as 0.1.1",
"nelmio/cors-bundle": "^1.5",
"omnipay/common": "^3.0@alpha",
"paypal/rest-api-sdk-php": "^1.13",
"payum/offline": "^1.5",
"payum/omnipay-v3-bridge": "^1.0@alpha",
"payum/payum": "^1.5",
"payum/payum-bundle": "^2.3",
"php-http/guzzle6-adapter": "^1.1",
"ramsey/uuid": "^3.7",
"sofort/sofortlib-php": "^3.3",
"stripe/stripe-php": "^5.9",
"symfony/console": "^4.0",
"symfony/flex": "^1.0",
"symfony/form": "^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/security-csrf": "^4.0",
"symfony/twig-bundle": "^4.0",
"symfony/yaml": "^4.0",
"webmozart/json": "^1.2"
},
"require-dev": {
"sensiolabs/security-checker": "^4.1",
"symfony/browser-kit": "^4.0",
"symfony/css-selector": "^4.0",
"symfony/dotenv": "^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/var-dumper": "^4.0"
},
"config": {
"platform": {
"php": "7.2"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/Tests",
"App\\Test\\": "tests/Test"
}
},
"replace": {
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check --end-point=http://security.sensiolabs.org/check_lock": "script"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01C41WTJ6HX33H2VQX2BMADZZS",
"allow-contrib": false
},
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"prefer-stable": true
}