-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 loc) · 955 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
{
"name": "fswebworks/silverstripe-user-invitation",
"description": "A SilverStripe module to handle user invitations to your secure website.",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"user invitation"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franco Springveldt",
"email": "[email protected]"
}
],
"scripts": {
"lint": "phpcs -s code/ tests/"
},
"autoload": {
"psr-4": {
"FSWebWorks\\SilverStripe\\UserInvitations\\": "src/",
"FSWebWorks\\SilverStripe\\UserInvitations\\Tests\\": "tests/php/"
}
},
"require": {
"silverstripe/framework": "^4.0"
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7"
}
}