This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
forked from forkcms/forkcms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
103 lines (103 loc) · 3.3 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
{
"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": "http://www.fork-cms.com/",
"license": "MIT",
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-zip": "*",
"ext-gd": "*",
"ext-intl": "*",
"behat/transliterator": "~1.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"google/apiclient": "~1.1.2",
"google/recaptcha": "~1.1",
"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": "^1.7",
"mailmotor/campaignmonitor-bundle": "^2.0",
"mailmotor/mailchimp-bundle": "^3.0",
"mailmotor/mailmotor-bundle": "^3.0",
"matthiasmullie/minify": "~1.3",
"matthiasmullie/scrapbook": "^1.3",
"pimple/pimple": "^3.2",
"ramsey/uuid": "^3.5",
"ramsey/uuid-doctrine": "^1.2",
"simple-bus/doctrine-orm-bridge": "^4.0",
"simple-bus/symfony-bridge": "^4.1",
"spoon/library": "^3.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/assetic-bundle": "^2.8",
"symfony/monolog-bundle": "^3.1",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/symfony": "^3.3",
"tijsverkoyen/akismet": "1.1.*",
"tijsverkoyen/css-to-inline-styles": "1.5.*",
"phpoffice/phpspreadsheet": "^1.12",
"composer/package-versions-deprecated": "^1.11"
},
"require-dev": {
"jdorn/sql-formatter": "1.2.17",
"symfony/var-dumper": "^3.3",
"squizlabs/php_codesniffer": "^3.5",
"symfony/phpunit-bridge": "*",
"phpstan/phpstan": "^0.10.3",
"phpstan/phpstan-symfony": "^0.10.2"
},
"config": {
"bin-dir": "bin"
},
"support": {
"forum": "https://fork-cms.herokuapp.com",
"issues": "https://github.com/forkcms/forkcms/issues"
},
"scripts": {
"test": "./bin/simple-phpunit",
"post-install-cmd": [
"php bin/console assetic:dump .",
"php bin/console forkcms:cache:clear",
"php bin/console cache:clear --no-warmup",
"php bin/console cache:warmup"
],
"post-update-cmd": [
"php bin/console assetic:dump .",
"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/"
}
}
}