-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.42 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
{
"name": "firesphere/partialuserforms",
"description": "Store partial userform submissions",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": [
"Userforms",
"editable",
"form",
"partial",
"SilverStripe"
],
"authors": [
{
"name": "Simon Erkelens",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"silverstripe/recipe-cms": "^4",
"silverstripe/userforms": "^5.4",
"symbiote/silverstripe-queuedjobs": "^4.2"
},
"require-dev": {
"scriptfusion/phpunit-immediate-exception-printer": "^2.0",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"installer-name": "partialuserforms",
"branch-alias": {
"1.x-dev": "1.0.x-dev",
"dev-master": "1.x-dev"
},
"expose": [
"client/dist"
],
"autoload-dev": {
"psr-4": {
"Firesphere\\PartialUserForms\\Controllers": "src/controllers",
"Firesphere\\PartialUserForms\\Extensions": "src/extensions",
"Firesphere\\PartialUserForms\\Models": "src/models",
"Firesphere\\PartialUserForms\\Jobs": "src/jobs"
}
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}