This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
forked from jvandesande/oauth2-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
{
"authors": [
{
"email": "hswong3i@pantarei-design.com",
"homepage": "http://hswong3i.net",
"name": "Wong Hoi Sing Edison"
}
],
"autoload": {
"psr-4": {
"AuthBucket\\OAuth2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AuthBucket\\OAuth2\\Tests\\": "tests/"
}
},
"description": "The standard compliant OAuth2.0 library based on the Symfony Components",
"extra": {
"branch-alias": {
"dev-develop": "5.x-dev",
"dev-master": "5.0.x-dev"
}
},
"homepage": "https://github.com/authbucket/oauth2-php",
"keywords": [
"oauth2",
"psr-1",
"psr-2",
"psr-3",
"psr-4",
"silex"
],
"license": "MIT",
"name": "authbucket/oauth2-php",
"require": {
"guzzlehttp/guzzle": "~6.2",
"lib-openssl": "*",
"php": ">=5.5.9",
"psr/log": "~1.0",
"symfony/http-foundation": "~3.2",
"symfony/http-kernel": "~3.2",
"symfony/security": "~3.2",
"symfony/validator": "~3.2"
},
"require-dev": {
"doctrine/data-fixtures": "~1.0",
"doctrine/dbal": "~2.2",
"doctrine/orm": "~2.2",
"ext-pdo_sqlite": "*",
"monolog/monolog": "~1.4",
"silex/silex": "~2.1",
"symfony/browser-kit": "~3.2",
"symfony/config": "~3.2",
"symfony/css-selector": "~3.2",
"symfony/finder": "~3.2",
"symfony/form": "~3.2",
"symfony/phpunit-bridge": "~3.2",
"symfony/process": "~3.2",
"symfony/translation": "~3.2",
"symfony/twig-bridge": "~3.2",
"twig/twig": "~1.28|~2.0"
},
"type": "library"
}