-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
139 lines (125 loc) · 4.77 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
133
134
135
136
137
138
139
{
"name": "binh/kportal_fresh",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=5.5.9",
"symfony/symfony": "3.3.*",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-apcu": "^1.0",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"liip/theme-bundle": "^1.4.0",
"jms/serializer-bundle": "^1.1.0",
"friendsofsymfony/user-bundle": "dev-master#9c64d6fa7ae264828b2ec98aca847840b200bd56",
"friendsofsymfony/rest-bundle": "^2.1",
"willdurand/hateoas-bundle": "1.2.0",
"eko/feedbundle": "^1.2.7",
"lunetics/locale-bundle": "^2.5",
"burgov/key-value-form-bundle": "^1.4",
"egeloen/ckeditor-bundle": "^4.0",
"symfony-cmf/symfony-cmf": "^2.0",
"symfony-cmf/seo-bundle": "^2.0",
"symfony-cmf/routing-auto-bundle": "^2.0",
"symfony-cmf/sonata-admin-integration-bundle": "dev-master",
"jackalope/jackalope-jackrabbit": "^1.2",
"doctrine/phpcr-odm": "^1.4",
"doctrine/phpcr-bundle": "^1.3.4",
"doctrine/data-fixtures": "^1.0",
"sonata-project/intl-bundle": "^2.3.0",
"sonata-project/admin-bundle": "^3.7",
"sonata-project/doctrine-orm-admin-bundle": "^3.0.5",
"sonata-project/doctrine-phpcr-admin-bundle": "^2.0",
"sonata-project/easy-extends-bundle": "^2.1",
"sonata-project/block-bundle": "^3.1.1",
"sonata-project/media-bundle": "^3.3.0",
"sonata-project/translation-bundle": "^2.0.2",
"sonata-project/cache-bundle": "^2.3.1",
"sonata-project/notification-bundle": "^3.0",
"sonata-project/formatter-bundle": "^3.1",
"bean-project/core-bundle": "dev-master",
"bean-project/location-bundle": "dev-master",
"friendsofsymfony/jsrouting-bundle": "1.6.0",
"cocur/slugify": "v2.3",
"ocramius/proxy-manager": "^1.0",
"liip/imagine-bundle": "1.6",
"symfony-cmf/media-bundle": "1.3.1",
"aws/aws-sdk-php": "^3.19.9",
"stof/doctrine-extensions-bundle": "1.2.2",
"guzzle/http": "^3.9",
"ornicar/gravatar-bundle": "1.1.4",
"symfony/assetic-bundle": "^2.8",
"winzou/state-machine-bundle": "0.2.3",
"liip/monitor-bundle": "2.4.1",
"hwi/oauth-bundle": "0.5",
"leafo/scssphp": "^0.6.6",
"patchwork/jsqueeze": "^2.0",
"white-october/pagerfanta-bundle": "^1.0",
"symfony/security-csrf": "^3.1",
"jms/translation-bundle": "dev-master",
"jms/di-extra-bundle": "dev-master",
"knplabs/doctrine-behaviors": "^1.4",
"suncat/mobile-detect-bundle": "^1.0",
"h5p/h5p-core": "^1.5",
"bean-project/organisation": "dev-master",
"liuggio/excelbundle": "^2.1.0",
"nelmio/cors-bundle": "^1.5",
"gesdinet/jwt-refresh-token-bundle": "~0.2",
"lexik/jwt-authentication-bundle": "^2.1",
"knplabs/knp-snappy-bundle": "dev-master"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"minimum-stability": "dev",
"discard-changes": true,
"prefer-stable": true,
"scripts": {
"symfony-scripts": [
"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-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"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"
},
"branch-alias": null
}
}