-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
128 lines (128 loc) · 5.05 KB
/
composer.json
File metadata and controls
128 lines (128 loc) · 5.05 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "campr/campr",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"": "backend/src/"
},
"classmap": [
"backend/app/AppKernel.php",
"backend/app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "backend/tests/"
}
},
"repositories": {
"packagist": { "url": "https://packagist.org", "type": "composer" },
"php-translation/extractor": {
"type": "vcs",
"url": "https://github.com/DiliBau/extractor"
}
},
"require": {
"php": ">=7.1",
"symfony/symfony": "3.1.*",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.3",
"doctrine/doctrine-migrations-bundle": "^1.1",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.8",
"symfony/assetic-bundle": "^2.8",
"symfony/polyfill-apcu": "^1.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"snc/redis-bundle": "2.x-dev",
"predis/predis": "^1.0",
"lexik/jwt-authentication-bundle": "^1.5",
"tss/automailer-bundle": "dev-master",
"knplabs/knp-paginator-bundle": "^2.5",
"fabpot/goutte": "^3.1",
"whiteoctober/breadcrumbs-bundle": "^1.2",
"vich/uploader-bundle": "1.2.0",
"friendsofsymfony/jsrouting-bundle": "^1.6",
"gregwar/captcha-bundle": "^2.0",
"liip/imagine-bundle": "^1.6",
"knplabs/knp-menu-bundle": "^2.0",
"symfony/serializer": "^3.1",
"jms/serializer": "^1.3",
"jms/serializer-bundle": "^2.0",
"ocramius/proxy-manager": "~2",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"gos/web-socket-bundle": "^1.8",
"jms/security-extra-bundle": "^1.6",
"lcobucci/jwt": "^3.2",
"stof/doctrine-extensions-bundle": "^1.2",
"guzzlehttp/guzzle": "^6.2",
"nelmio/cors-bundle": "^1.5",
"willdurand/js-translation-bundle": "^2.6",
"lexik/translation-bundle": "^4.0",
"scheb/two-factor-bundle": "^2.9",
"jsvrcek/ics-bundle": "^0.1.0",
"cangelis/pdf": "^2.2",
"webmozart/assert": "^1.3",
"pagerfanta/pagerfanta": "^1.0",
"beberlei/doctrineextensions": "^1.0",
"php-translation/loco-adapter": "^0.7.0",
"php-translation/symfony-bundle": "^0.7.0",
"php-translation/extractor": "^1.5.3",
"php-http/httplug-bundle": "^1.10",
"php-http/guzzle6-adapter": "^1.1",
"ramsey/uuid-doctrine": "^1.5",
"eightpoints/guzzle-bundle": "^7.3",
"ext-json": "*",
"enqueue/enqueue-bundle": "^0.8.37",
"enqueue/redis": "^0.8.37",
"oneup/uploader-bundle": "^2.0",
"league/flysystem": "^1.0",
"spatie/flysystem-dropbox": "^1.0",
"cocur/slugify": "^3.2"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0",
"phpunit/phpunit": "4.8.27"
},
"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",
"yarn --ignore-engines --ignore-scripts && yarn postinstall",
"if [ -d .git/hooks ]; then bash bin/install/git-hooks; fi"
],
"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",
"yarn --ignore-engines --ignore-scripts && yarn postinstall",
"if [ -d .git/hooks ]; then bash bin/install/git-hooks; fi"
]
},
"config": {
"vendor-dir": "backend/vendor"
},
"extra": {
"symfony-app-dir": "backend/app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "backend/tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "backend/app/config/parameters.yml"
},
"branch-alias": null
}
}