forked from modxcms/revolution
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 3.2 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
{
"name": "modx/revolution",
"description": "MODX Revolution is a Content Management System",
"type": "project",
"keywords": [
"content",
"CMS",
"routing",
"templating"
],
"homepage": "https://modx.com/",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jason Coward",
"email": "[email protected]",
"homepage": "http://jasoncoward.com/",
"role": "Developer"
},
{
"name": "Shaun McCormick",
"email": "[email protected]",
"homepage": "http://splittingred.com/",
"role": "Developer"
},
{
"name": "Jan Peca",
"email": "[email protected]",
"homepage": "http://www.bxr.cz/",
"role": "Developer"
}
],
"support": {
"docs": "https://rtfm.modx.com/revolution/2.x/",
"email": "[email protected]",
"forum": "https://forums.modx.com/",
"irc": "irc://irc.freenode.org/modx",
"chat": "https://modx.org/",
"issues": "https://github.com/modxcms/revolution/issues/",
"source": "https://github.com/modxcms/revolution/"
},
"config": {
"vendor-dir": "core/vendor"
},
"require": {
"php": ">=5.6",
"xpdo/xpdo": "^3.0@dev",
"league/flysystem": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-cached-adapter": "^1.0",
"phpmailer/phpmailer": "^6.0",
"smarty/smarty": "^3.1",
"james-heinrich/phpthumb": "^1.7",
"erusev/parsedown": "^1.7",
"simplepie/simplepie": "^1.5",
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-zlib": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-pdo": "*",
"ext-xml": "*",
"ext-zip": "*",
"inlinestyle/inlinestyle": "^1.2"
},
"suggest": {
"ext-imagick": "To process images in a more advanced way",
"ext-iconv": "Needed if you want to use the built-in transliteration service",
"ext-mbstring": "Needed when use_multibyte is enabled or when using some extras like Gallery",
"ext-xmlwriter": "To use the export functionalities"
},
"autoload": {
"classmap": [
"core/xpdo/"
]
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('_build/build.properties.php') || copy('_build/build.properties.sample.php', '_build/build.properties.php');\"",
"@php -r \"file_exists('_build/build.config.php') || copy('_build/build.config.sample.php', '_build/build.config.php');\"",
"@php _build/transport.core.php"
],
"phpunit": "phpunit -c _build/test/phpunit.xml --coverage-text --colors",
"coverage": "phpunit -c _build/test/phpunit.xml --colors --coverage-html ./.coverage"
},
"scripts-descriptions": {
"phpunit": "Run PHPUnit test",
"coverage": "Generating the code coverage report in HTML format"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "~5.7|~6.5",
"php-coveralls/php-coveralls": "~2.1"
}
}