-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.11 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "dnadesign/silverstripe-tagurit",
"description": "An alternative taxonomy module, providing protected types, and inverting the Tag/Type relationship to Type/Tag",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"taxonomy",
"tag"
],
"license": "MIT",
"require": {
"php": "^8.3",
"silverstripe/admin": "^3.0",
"silverstripe/framework": "^6.0",
"symbiote/silverstripe-gridfieldextensions": "^5.0"
},
"require-dev": {
"cambis/silverstan": "^2.1",
"cambis/silverstripe-rector": "^2.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"DNADesign\\Tagurit\\": "src/"
}
},
"extra": {
"installer-name": "silverstripe-tagurit"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true,
"silverstripe/vendor-plugin": true
},
"sort-packages": true
}
}