forked from forkcms/forkcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.06 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.06 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
{
"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": "^5.5 || ^7.0",
"tijsverkoyen/akismet": "1.1.*",
"tijsverkoyen/css-to-inline-styles": "1.5.*",
"matthiasmullie/minify": "~1.3",
"matthiasmullie/scrapbook": "^1.3",
"symfony/symfony": "^2.7",
"symfony/assetic-bundle": "^2.7",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.8",
"spoon/library": "^2.3",
"behat/transliterator": "~1.0",
"google/apiclient": "~1.1.2",
"league/flysystem": "~1.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"simple-bus/symfony-bridge": "^4.1",
"simple-bus/doctrine-orm-bridge": "^4.0",
"mailmotor/mailchimp-bundle": "^2.0",
"mailmotor/campaignmonitor-bundle": "^1.0",
"mailmotor/mailmotor-bundle": "^2.0",
"swiftmailer/swiftmailer": "^5.4.6"
},
"require-dev": {
"jdorn/sql-formatter": "1.2.17",
"symfony/var-dumper": "^2.7",
"squizlabs/php_codesniffer": "^2.7",
"symfony/phpunit-bridge": "^3.2"
},
"config": {
"bin-dir": "bin"
},
"support": {
"forum": "https://fork-cms.herokuapp.com",
"issues": "https://github.com/forkcms/forkcms/issues"
},
"scripts": {
"post-install-cmd": [
"php app/console assetic:dump .",
"cd tools && bash ./remove_cache"
],
"post-update-cmd": [
"php app/console assetic:dump .",
"cd tools && bash ./remove_cache"
]
},
"autoload": {
"psr-0": {
"": "src/"
},
"exclude-from-classmap": [
"**/Tests/",
"**/tests/",
"**/Test/"
]
}
}