-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
57 lines (57 loc) · 1.53 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
50
51
52
53
54
55
56
57
{
"authors": [
{
"email": "hswong3i@pantarei-design.com",
"homepage": "http://hswong3i.net",
"name": "Wong Hoi Sing Edison"
}
],
"autoload": {
"psr-4": {
"AuthBucket\\Bundle\\OAuth2Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AuthBucket\\Bundle\\OAuth2Bundle\\Tests\\": "tests/"
}
},
"description": "Symfony OAuth2Bundle",
"extra": {
"branch-alias": {
"dev-develop": "5.x-dev",
"dev-master": "5.0.x-dev"
}
},
"homepage": "https://github.com/authbucket/oauth2-symfony-bundle",
"keywords": [
"oauth2",
"psr-1",
"psr-2",
"psr-3",
"psr-4",
"symfony"
],
"license": "MIT",
"name": "authbucket/oauth2-symfony-bundle",
"require": {
"authbucket/oauth2-php": "~5.0.0-alpha4",
"php": ">=5.5.9",
"symfony/framework-bundle": "~3.2",
"symfony/monolog-bundle": "~3.0",
"symfony/security-bundle": "~3.2"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.6",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"doctrine/orm": "~2.5",
"ext-pdo_sqlite": "*",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/phpunit-bridge": "~3.2",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/symfony": "~3.2",
"twig/extensions": "~1.0"
},
"type": "symfony-bundle"
}