-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "logicbrush/silverstripe-userforms-utils",
"description": "A collection of enhancements and utilities for the Silverstripe UserForms module",
"homepage": "https://www.logicbrush.com/specialities/silverstripe-development/",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"userforms",
"utils",
"utilities",
"utility"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "John Learn",
"email": "jflearn@logicbrush.com"
}
],
"require": {
"php": "^7.4||^8.0",
"silverstripe/framework": "^4.0||^5.0",
"silverstripe/userforms": "*",
"silverstripe/widgets": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"silverstripe/sqlite3": "*",
"logicbrush/metrics": "*",
"cmrcx/phptidy": "*",
"rector/rector": "^1.2"
},
"extra": {
"expose": [
"client"
]
},
"autoload": {
"psr-4": {
"logicbrush\\silverstripe-userforms-utils\\": "src/"
}
},
"support": {
"issues": "https://github.com/logicbrush/silverstripe-userforms-utils/issues"
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}