forked from nrkkalyan/open-loyalty-framework
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
112 lines (110 loc) · 4.27 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
{
"name": "dataworksbi/open-loyalty-framework",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"OpenLoyalty\\": "src/OpenLoyalty",
"OpenLoyaltyPlugin\\": "src/OpenLoyaltyPlugin"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"": "tests/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-simplexml": "*",
"a2lix/translation-form-bundle": "^3.0",
"beberlei/doctrineextensions": "^1.0",
"broadway/broadway": "^2.0.1",
"broadway/broadway-bundle": "^0.6.1",
"broadway/uuid-generator": "^1.0.0",
"broadway/read-model-elasticsearch": "^0.3.0",
"broadway/event-store-dbal": "^0.6.0",
"broadway/snapshotting": "^0.3.0",
"doctrine/orm": "^2.10",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"elasticsearch/elasticsearch": "^5.0",
"erusev/parsedown": "^1.7",
"friendsofsymfony/rest-bundle": "^3.0",
"fzaninotto/faker": "^1.6",
"gesdinet/jwt-refresh-token-bundle": "^1.0",
"gumlet/php-image-resize": "^1.9",
"guzzlehttp/guzzle": "~6.0",
"incenteev/composer-parameter-handler": "^2.0",
"jms/serializer-bundle": "^4.0",
"knplabs/doctrine-behaviors": "^2.0",
"knplabs/knp-gaufrette-bundle": "^0.7.0",
"lexik/jwt-authentication-bundle": "^2.0",
"odolbeau/phone-number-bundle": "^3.0",
"nelmio/api-doc-bundle": "^3.0",
"nelmio/cors-bundle": "^2.0",
"ocramius/proxy-manager": "^2.13",
"pixers/salesmanago-api": "1.1.1",
"prewk/xml-string-streamer": "^0.11.0",
"phpdocumentor/reflection-docblock": "^5.3",
"phpdocumentor/type-resolver": "^1.5",
"ramsey/uuid-doctrine": "1.4.3",
"smsapi/php-client": "^1.8",
"sensio/framework-extra-bundle": "^5.0",
"symfony/symfony": "5.4.*",
"symfony/monolog-bundle": "^2.8",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^7.0",
"symfony/phpunit-bridge": "^3.0",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-symfony": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpstan/phpstan-phpunit": "^1.0"
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "var/bin"
},
"extra": {
"branch-alias": {
"dev-master": "3.3.x-dev"
},
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}