forked from forkcms/forkcms
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
112 lines (112 loc) · 3.58 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
{
"name": "forkcms/forkcms",
"description": "Fork is an open source CMS that will rock your world.",
"keywords": [
"cms",
"fork",
"fork cms",
"content management system",
"symfony",
"blog",
"php"
],
"homepage": "https://www.fork-cms.com/",
"license": "MIT",
"require": {
"php": "^7.4||^8.0",
"ext-json": "*",
"ext-zip": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-simplexml": "*",
"behat/transliterator": "~1.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7",
"google/apiclient": "~1.1.2",
"google/recaptcha": "^1.2",
"jeroendesloovere/geolocation-php-api": "^2.1",
"league/flysystem": "~1.0",
"league/flysystem-aws-s3-v3": "^1.0.13",
"league/flysystem-cached-adapter": "^1.0.6",
"liip/imagine-bundle": "*",
"mailmotor/campaignmonitor-bundle": "^3.0",
"mailmotor/mailchimp-bundle": "^4.0",
"mailmotor/mailmotor-bundle": "^4.0",
"matthiasmullie/minify": "~1.3",
"matthiasmullie/scrapbook": "^1.3",
"pimple/pimple": "^3.2",
"ramsey/uuid": "^4.0",
"ramsey/uuid-doctrine": "^2.0",
"simple-bus/doctrine-orm-bridge": "6.2.*",
"simple-bus/symfony-bridge": "~6.2",
"spoon/library": "^3.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/monolog-bundle": "^3.1",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/symfony": "^4.0",
"tijsverkoyen/css-to-inline-styles": "^2.0",
"phpoffice/phpspreadsheet": "^1.12",
"composer/package-versions-deprecated": "^1.11",
"guzzlehttp/guzzle": "^6.5",
"doctrine/annotations": "^1.14",
"sentry/sentry-symfony": "^4.1",
"tijsverkoyen/convert-to-junit-xml": "^1.9.0"
},
"require-dev": {
"jdorn/sql-formatter": "1.2.17",
"symfony/var-dumper": "^4.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/phpunit-bridge": "^4.3",
"phpstan/phpstan": "^0.12.52",
"phpstan/phpstan-symfony": "^0.12.7",
"deployer/deployer": "^7.0",
"deployer/recipes": "^6.2",
"tijsverkoyen/deployer-sumo": "^3.1"
},
"config": {
"bin-dir": "bin"
},
"support": {
"forum": "https://fork-cms.herokuapp.com",
"issues": "https://github.com/forkcms/forkcms/issues"
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"./bin/simple-phpunit"
],
"post-install-cmd": [
"php bin/console forkcms:cache:clear",
"php bin/console cache:clear --no-warmup",
"php bin/console cache:warmup"
],
"post-update-cmd": [
"php bin/console forkcms:cache:clear",
"php bin/console cache:clear --no-warmup",
"php bin/console cache:warmup"
]
},
"autoload": {
"psr-4": {
"Frontend\\": "src/Frontend",
"Backend\\": "src/Backend",
"Common\\": "src/Common",
"Console\\": "src/Console",
"ForkCMS\\": "src/ForkCMS",
"ForkCMS\\App\\": "app",
"CKSource\\CKFinder\\": "src/Backend/Core/Js/ckfinder/core/connector/php/CKSource/CKFinder"
},
"exclude-from-classmap": [
"**/Tests/",
"**/tests/",
"**/Test/"
]
},
"autoload-dev": {
"psr-4": {
"ForkCMS\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}