forked from clebeaupin/php-oauth2-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.07 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
{
"authors": [
{
"email": "[email protected]",
"name": "Fran\u00e7ois Kooman"
}
],
"autoload": {
"psr-4": {
"fkooman\\OAuth\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"fkooman\\OAuth\\Client\\Tests\\": "tests/"
}
},
"description": "Very simple OAuth 2.0 client",
"license": "MIT",
"name": "fkooman/oauth2-client",
"require": {
"ext-curl": "*",
"ext-date": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-session": "*",
"ext-spl": "*",
"paragonie/constant_time_encoding": "^1|^2",
"paragonie/random_compat": ">=1",
"php": ">=5.4",
"psr/log": "^1.0",
"symfony/polyfill-php56": "^1"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5|^6|^7"
},
"support": {
"email": "[email protected]",
"source": "https://git.tuxed.net/fkooman/php-oauth2-client"
},
"type": "library"
}