-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
executable file
·65 lines (65 loc) · 1.84 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
{
"name": "hipay/hipay-wallet-cashout-mirakl-integration",
"description": "Turnkey integration which handles cash-out operations between HiPay and the Mirakl marketplace solution.",
"version": "3.8.0",
"minimum-stability": "stable",
"license": "Apache-2.0",
"authors": [
{
"name": "HiPay",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/hipay/hipay-wallet-cashout-mirakl-library"
}
],
"require": {
"php": ">=5.3.9",
"doctrine/orm": "~2.4.8",
"dflydev/doctrine-orm-service-provider": "~1.0.7",
"symfony/console": "~2.8.27",
"silex/web-profiler": "~1.0",
"symfony/yaml": "~2.8.27",
"hipay/hipay-wallet-cashout-mirakl-library" : "~2.14.0",
"incenteev/composer-parameter-handler": "~2.1.2",
"gedmo/doctrine-extensions" : "~2.4.30",
"swiftmailer/swiftmailer": "~5.4.8",
"monolog/monolog": "~1.23.0",
"symfony/validator": "~2.8.27",
"doctrine/annotations": "~1.4.0",
"nesbot/carbon": "~1.22.1",
"silex/silex": "~1.3.6",
"twig/twig": "^1.34.4",
"symfony/twig-bridge": "~2.8.27",
"symfony/form": "~2.8.27",
"symfony/security-csrf": "~2.8.27",
"symfony/config": "~2.8.27",
"symfony/translation": "~2.8.27",
"symfony/doctrine-bridge": "~2.8.27",
"mustache/mustache": "~2.12.0",
"erusev/parsedown":"~1.6.3",
"symfony/serializer": "~2.8.26",
"symfony/security": "~2.8.26"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "config/parameters.yml"
}
},
"autoload": {
"psr-4": {
"HiPay\\Wallet\\Mirakl\\Integration\\": "src"
}
}
}