-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
108 lines (108 loc) · 3.57 KB
/
composer.json
File metadata and controls
108 lines (108 loc) · 3.57 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
{
"name": "smart-core/cms-sf4",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.2.0",
"cocur/slugify": "^3.2",
"easycorp/easyadmin-bundle": "^2.1",
"friendsofsymfony/user-bundle": "~2.0@dev",
"helios-ag/fm-elfinder-bundle": "~8",
"helios-ag/fm-elfinder-php-connector": "*",
"knplabs/knp-menu-bundle": "dev-master",
"liip/imagine-bundle": "^2.1",
"liip/theme-bundle": "^1.6",
"misd/phone-number-bundle": "^1.3",
"mopa/bootstrap-bundle": "^3.3",
"ramsey/uuid-doctrine": "^1.5",
"sensio/framework-extra-bundle": "^5.3",
"sensiolabs/security-checker": "^5.0",
"smart-core/felib-bundle": "dev-master",
"smart-core/html-bundle": "dev-master",
"smart-core/rich-editor-bundle": "dev-master",
"smart-core/seo-bundle": "dev-master",
"smart-core/simple-profiler-bundle": "dev-master",
"sonata-project/intl-bundle": "^2.6",
"stfalcon/tinymce-bundle": "*",
"symfony/asset": "4.2.*",
"symfony/console": "4.2.*",
"symfony/debug-pack": "^1.0",
"symfony/dotenv": "^4.2",
"symfony/expression-language": "4.2.*",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "4.2.*",
"symfony/maker-bundle": "^1.11",
"symfony/messenger": "4.2.*",
"symfony/monolog-bundle": "^3.3",
"symfony/orm-pack": "^1.0",
"symfony/profiler-pack": "^1.0",
"symfony/security-bundle": "4.2.*",
"symfony/serializer-pack": "^1.0",
"symfony/swiftmailer-bundle": "^3.2",
"symfony/web-server-bundle": "4.2.*",
"symfony/yaml": "4.2.*",
"twig/extensions": "^1.5",
"webonyx/graphql-php": "^0.13.4",
"white-october/pagerfanta-bundle": "^1.2"
},
"config": {
"apcu-autoloader": true,
"component-dir": "public/components",
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Doctrine\\ORM\\": "cms/CMSBundle/Doctrine/ORM",
"Monolith\\": "cms/",
"Smart\\": "cms/Smart/",
"SmartCore\\Bundle\\DbDumperBundle\\": "cms/DbDumperBundle/",
"SmartCore\\Bundle\\MediaBundle\\": "cms/MediaBundle/",
"SmartCore\\Bundle\\SettingsBundle\\": "cms/SettingsBundle/",
"SmartCore\\Bundle\\SmartSimpleProfilerBundle\\": "cms/SimpleProfilerBundle/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"sh bin/clear_cache": "script",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
},
"post-install-cmd": [
"@auto-scripts",
"php bin/console cms:themes:create-symlinks"
],
"post-update-cmd": [
"@auto-scripts",
"php bin/console cms:themes:create-symlinks"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "4.2.*"
}
},
"require-dev": {
"phpstan/phpstan": "^0.11.8"
}
}