forked from modxcms/revolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.13 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
{
"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://docs.modx.com/",
"email": "[email protected]",
"forum": "https://community.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/"
},
"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": "vendor/bin/phpunit -c _build/test/phpunit.xml --coverage-text --colors",
"coverage": "vendor/bin/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"
},
"require": {
"php": ">=5.3.3"
}
}