forked from opencrmitalia-official/myddleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
132 lines (129 loc) · 4.68 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"prefer-stable": true,
"require": {
"php": ">=7.2",
"symfony/symfony": "3.4.37",
"doctrine/orm": "^2.6.4",
"doctrine/doctrine-bundle": "1.8.1",
"twig/extensions": "~1.0",
"twig/twig": "^1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^3.1.2",
"symfony/expression-language": "~3.1",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"stof/doctrine-extensions-bundle": "1.3.x-dev",
"friendsofsymfony/user-bundle": "~2.0.2",
"jquery/jquery": "2.1.3",
"jquery/jquery_ui": "1.11.1",
"twitter/bootstrap": "3.3.7",
"leafo/lessphp": "0.4.0",
"phpsec/phpsec":"0.6.*",
"white-october/pagerfanta-bundle": "dev-master",
"pagerfanta/pagerfanta": "^2.0.0",
"illuminate/encryption": "5.3.*@dev",
"friendsofsymfony/jsrouting-bundle": "^1.6",
"api-platform/core": "2.2.10",
"api-platform/api-pack": "^1.1",
"lexik/jwt-authentication-bundle": "^2.6",
"mautic/api-library": "^2.15",
"javanile/vtiger-client": "^0.0.13"
},
"repositories": [
{
"type": "package",
"package": {
"name": "jquery/jquery",
"version": "2.1.3",
"dist": {
"url": "https://code.jquery.com/jquery-2.1.3.min.js",
"type": "file"
}
}
},
{
"type": "package",
"package": {
"name": "jquery/jquery_ui",
"version": "1.11.1",
"dist": {
"url": "https://code.jquery.com/ui/1.11.1/jquery-ui.min.js",
"type": "file"
}
}
}
],
"require-dev": {
"sensio/generator-bundle": "^3.0",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
]
},
"config": {
},
"extra": {
"symfony-bin-dir": "bin",
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-var-dir": "var",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": [{
"file": "app/config/parameters.yml"
},
{
"file": "app/config/public/parameters_smtp.yml",
"dist-file": "app/config/public/parameters_smtp.yml.dist"
},
{
"file": "app/config/public/parameters_public.yml",
"dist-file": "app/config/public/parameters_public.yml.dist"
}
],
"branch-alias": {
"dev-master": "3.2-dev"
}
}
}