-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.2 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 2.2 KB
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
65
66
67
68
69
70
71
72
73
{
"name": "akqa/silverstripe-tumu",
"type": "silverstripe-vendormodule",
"description": "Foundation for SilverStripe projects at AKQA",
"license": "MIT",
"bin": [
"bin/tag_release"
],
"require": {
"silverstripe/framework": "^6.2",
"silverstripe/cms": "^6.2",
"silverstripe/errorpage": "^3",
"silverstripe/userforms": "^7",
"dnadesign/silverstripe-elemental": "^6",
"heyday/silverstripe-menumanager": "^5",
"larapack/dd": "^1.1",
"silverstripe/taxonomy": "^4",
"silverstripe/tagfield": "^4",
"silverstripe/environmentcheck": "^4",
"silverstripe/login-forms": "^6",
"symbiote/silverstripe-queuedjobs": "^6",
"jonom/silverstripe-betternavigator": "^7",
"wilr/silverstripe-googlesitemaps": "^4",
"unclecheese/display-logic": "^4",
"silverstripe/redirectedurls": "^4",
"silverstripe/sharedraftcontent": "^4",
"silverstripe/htmleditor-tinymce": "^1",
"silverstripe/totp-authenticator": "^6.0",
"jonom/focuspoint": "^6",
"silverstripe/linkfield": "^5",
"silverstripe/mfa": "^6.1",
"silverstripe/spamprotection": "^5.0",
"nesbot/carbon": "^3.11",
"kinglozzer/metatitle": "^4.0",
"silverstripe/iframe": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^11",
"cambis/silverstan": "^2",
"silverstripe/behat-extension": "^6.1"
},
"extra": {
"branch-alias": {
"dev-main": "6.x-dev"
}
},
"autoload": {
"psr-4": {
"Akqa\\SilverStripe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akqa\\SilverStripe\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs",
"lint:fix": "phpcbf",
"analyse": "phpstan analyse",
"analyse:fix": "phpstan analyse --fix",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html coverage"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}