forked from modxcms/revolution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.72 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
{
"name": "modx/revolution",
"description": "MODX Revolution is a Content Management System",
"type": "project",
"keywords": [
"content",
"CMS",
"routing",
"templating"
],
"homepage": "http://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": "http://rtfm.modx.com/revolution/2.x/",
"email": "[email protected]",
"forum": "http://forums.modx.com/",
"irc": "irc://irc.freenode.org/modx",
"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"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "~5.7|~6.5"
},
"require": {
"php": ">=5.3.3"
}
}