-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 1.04 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
{
"name": "wedevelopnl/silverstripe-articles",
"description": "Articles module",
"keywords": [
"silverstripe",
"articles",
"blog",
"news",
"listing"
],
"authors": [{
"name": "WeDevelop",
"email": "development@wedevelop.nl"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"silverstripe/framework": "^5.0",
"silverstripe/vendor-plugin": "^2.0",
"silverstripe/lumberjack": "^3.0",
"silverstripe/tagfield": "^3.0",
"unclecheese/display-logic": "^3.0",
"wedevelopnl/silverstripe-gridfieldsitetreebuttons": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.20"
},
"extra": {
"installer-name": "silverstripe-articles",
"branch-alias": {
"dev-main": "5.x-dev"
},
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"WeDevelop\\Articles\\": "src/"
}
}
}