-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.52 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "johnkrovitch/cms-bundle",
"description": "CMS Bundle for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "johnkrovitch",
"email": "arnaudfrezet@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"ext-json": "*",
"eko/feedbundle": "^2.0",
"erusev/parsedown": "^1.7",
"google/recaptcha": "^1.2",
"johnkrovitch/media-bundle": "^1.1RC1",
"johnkrovitch/notification-bundle": "^1.0",
"johnkrovitch/orm-pack": "^2.0",
"lag/adminbundle": "^1.1-RC2",
"liip/imagine-bundle": "^2.2",
"nesbot/carbon": "^2.27",
"ps/image-optimizer": "^2.0",
"psr/simple-cache": "^1.0",
"symfony/framework-bundle": "^3.4|^4.4|^5.1",
"symfony/mailer": "^3.4|^4.4|^5.1",
"symfony/routing": "^3.4|^4.4|^5.1",
"symfony/twig-bundle": "^3.4|^4.4|^5.1",
"twig/inky-extra": "^3.0",
"twig/markdown-extra": "^3.0"
},
"require-dev": {
"php-parallel-lint/php-var-dump-check": "~0.4",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0",
"symfony/webpack-encore-bundle": "^1.7"
},
"autoload": {
"psr-4": {
"JK\\CmsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JK\\CmsBundle\\Tests\\": "tests/CmsBundle/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
}
}