-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
33 lines (33 loc) · 917 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
{
"name": "bigfork/silverstripe-oauth",
"type": "silverstripe-vendormodule",
"description": "SilverStripe OAuth2 authentication, based on the PHP League's OAuth2 client",
"keywords": ["silverstripe", "oauth", "oauth2", "authentication"],
"authors": [
{
"name": "Loz Calver",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"require": {
"league/oauth2-client": "^2",
"silverstripe/framework": "^4 | ^5"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"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"
}