-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·41 lines (41 loc) · 1.1 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
{
"name": "i-lateral/silverstripe-auth-username",
"description": "Adds username authentication and username or email login to a silverstripe install",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/i-lateral/silverstripe-auth-username",
"keywords": [
"silverstripe",
"authentication",
"authenticator",
"username",
"login",
"member",
"user"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Morven Lewis-Everley",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/i-lateral/silverstripe-auth-username/issues"
},
"require": {
"silverstripe/framework": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"silverstripe/versioned" : "^1.0"
},
"scripts": {
"lint": "phpcs -s src/ tests/"
},
"autoload": {
"psr-4": {
"ilateral\\SilverStripe\\AuthUsername\\": "src/",
"ilateral\\SilverStripe\\AuthUsername\\Tests\\": "tests/"
}
}
}