-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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
{
"name": "dynamic/silverstripe-user-invitation",
"description": "A SilverStripe module to handle user invitations to your secure website.",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"user invitation"
],
"authors": [
{
"name": "Franco Springveldt",
"email": "[email protected]"
},
{
"name": "Dynamic",
"email": "[email protected]",
"homepage": "https://www.dynamicagency.com"
}
],
"require": {
"silverstripe/framework": "^4 || ^5",
"lekoala/silverstripe-cms-actions": "^1.4"
},
"require-dev": {
"silverstripe/recipe-testing": "^2 || ^3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dynamic\\UserInvitations\\": "src/",
"Dynamic\\UserInvitations\\Test\\": "tests/php/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
},
"process-timeout": 600
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}