-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1 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
{
"name": "symbiote/silverstripe-base",
"description": "Ozzy: the Symbiote project installer",
"require": {
"php": ">=5.6.0",
"gdmedia/ss-auto-git-ignore": "~1.0",
"silverstripe/framework": "~4.0@stable",
"silverstripe/cms": "~4.0@stable",
"silverstripe/errorpage": "~1.0@stable",
"silverstripe-themes/simple": "~3.2@stable"
},
"require-dev": {
"symbiote/silverstripe-build": "^5.2.9",
"phpunit/phpunit": "~5.7.0",
"symbiote/silverstripe-test-assist": "~4.0"
},
"extra": {
"installer-name": "base",
"branch-alias": {
"dev-master": "5.3.x-dev"
}
},
"autoload": {
"psr-4": {
"Symbiote\\Base\\": "mysite/src/",
"Symbiote\\Base\\Tests\\": "mysite/tests/"
}
},
"replace": {
"silverstripe-australia/base": "self.version"
},
"scripts": {
"post-update-cmd": [
"GDM\\SSAutoGitIgnore\\UpdateScript::Go"
],
"post-install-cmd": [
"GDM\\SSAutoGitIgnore\\UpdateScript::Go"
]
},
"config": {
"process-timeout": 600
},
"prefer-stable": true,
"minimum-stability": "dev"
}