This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.61 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": "ackama/silverstripe-cwp-template",
"version": "0.4.0",
"type": "silverstripe-recipe",
"description": "Ackama Silverstripe CWP Template",
"homepage": "https://ackama.com",
"license": "BSD-3-Clause",
"support": {
"docs": "https://www.cwp.govt.nz/developer-docs/en/2/"
},
"require": {
"php": ">=7.4.0",
"cwp/agency-extensions": "^2.4",
"cwp/cwp-recipe-cms": "^2.7",
"cwp/cwp-recipe-core": "^2.7",
"cwp/cwp-recipe-search": "^2.7",
"cwp/watea-theme": "^3",
"dnadesign/silverstripe-elemental": "^4.5",
"dnadesign/silverstripe-elemental-userforms": "^3.0",
"dynamic/silverstripe-elemental-blocks": "^3.0",
"phptek/sentry": "^3.0",
"silverstripe/recipe-blog": "^1.7",
"silverstripe/totp-authenticator": "^4.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"SilverstripeTemplateProject\\": [
"app/src/"
],
"SilverstripeTemplateProject\\Tests\\": [
"app/tests/"
]
},
"classmap": [
"app/helper/"
]
},
"extra": {
"project-files-installed": [
"app/_config.php",
"app/_config/mysite.yml"
]
},
"scripts": {
"post-create-project-cmd": [
"mv ci-pipelines/.github ./.github",
"mv ci-pipelines/bitbucket-pipelines.yml ./",
"rmdir ci-pipelines",
"composer update",
"npm install",
"composer config --unset scripts.post-create-project-cmd"
]
},
"config": {
"process-timeout": 600,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}