forked from concretecms/concretecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.5 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
{
"name": "concrete5/concrete5",
"license": "MIT",
"description": "concrete5 open source CMS",
"type": "project",
"keywords": [ "concrete5", "CMS", "concreteCMS" ],
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/tests", "/build", "/.github", "/.gitattributes", "/.travis.yml", "/CONTRIBUTING.md", "/phpunit.xml"
]
},
"require": {
"wikimedia/composer-merge-plugin": "~1.3",
"concrete5/dependency-patches": "^1.5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2",
"phpunit/phpunit": "^4",
"phpunit/dbunit": "^2.0",
"mockery/mockery": "^0.9.9"
},
"config": {
"process-timeout": 0,
"vendor-dir": "./concrete/vendor",
"platform": {
"php": "5.5.9"
}
},
"replace": {
"concrete5/core": "self.version"
},
"extra": {
"r1": "This is using the wikimedia plugin to merge our core/composer.json file.",
"r2": "By doing this, we greatly simplify the requirements for setting up a subtree split",
"merge-plugin": {
"include": [
"concrete/composer.json"
],
"recurse": false,
"replace": false,
"merge-extra": false
},
"allow-subpatches": [
"concrete5/dependency-patches"
]
},
"autoload-dev": {
"psr-4": {
"Concrete\\Tests\\": "tests/tests/",
"Concrete\\TestHelpers\\": "tests/helpers/"
}
},
"scripts": {
"test": "phpunit",
"post-create-project-cmd": [
"composer config --unset platform.php"
]
}
}