forked from micmania1/silverstripe-lumberjack
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
36 lines (36 loc) · 1003 Bytes
/
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
{
"name": "silverstripe/lumberjack",
"description": "A module to make managing pages in a GridField easy without losing any of the functionality that you're used to in the CMS.",
"type": "silverstripe-vendormodule",
"require": {
"php": "^8.1",
"silverstripe/framework": "^5.3",
"silverstripe/cms": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"extra": {
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"SilverStripe\\Lumberjack\\": "src/",
"SilverStripe\\Lumberjack\\Tests\\": "tests/"
}
},
"license": "BSD-2-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Michael Strong",
"email": "mstrong@silverstripe.org"
}
]
}