-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
34 lines (34 loc) · 965 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
{
"name": "bigfork/silverstripe-oauth-login",
"type": "silverstripe-vendormodule",
"description": "SilverStripe logins via OAuth2, using the PHP League's OAuth2 client",
"keywords": ["silverstripe", "oauth", "oauth2", "login"],
"authors": [
{
"name": "Loz Calver",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"require": {
"bigfork/silverstripe-oauth": "^2",
"silverstripe/framework": "^4.4 | ^5"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"sminnee/phpunit-mock-objects": "^3.4.5"
},
"autoload": {
"psr-4": {
"Bigfork\\SilverStripeOAuth\\Client\\": "src/",
"Bigfork\\SilverStripeOAuth\\Client\\Test\\": "tests/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}