forked from silverstripe/silverstripe-siteconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 978 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
37
38
{
"name": "silverstripe/siteconfig",
"description": "Site wide settings administration.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"siteconfig"
],
"authors": [
{
"name": "Will Rossiter",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"silverstripe/framework": "^4.10",
"silverstripe/admin": "^1",
"silverstripe/vendor-plugin": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SilverStripe\\SiteConfig\\": "code/",
"SilverStripe\\SiteConfig\\Tests\\": "tests/php/"
}
},
"scripts": {
"lint": "phpcs code/ tests/",
"lint-clean": "phpcbf code/ tests/"
},
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true
}