-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (40 loc) · 853 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
35
36
37
38
39
40
41
42
43
{
"name": "mhndev/oauth-client",
"description": "php open authentication server sdk",
"keywords": ["auth", "authentication", "open authentication", "oauth client"],
"license": "MIT",
"authors": [
{
"name": "Majid Abdolhosseini",
"email": "[email protected]",
"homepage":"http://mhndev.com"
}
],
"autoload": {
"psr-4": {
"mhndev\\oauthClient\\": "src"
}
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"mhndev/value-objects" : "1.*",
"mhndev/php-std": "1.*",
"guzzlehttp/guzzle": "6.*"
},
"suggest":{
"ext-PDO": "*",
"ext-sqlite3": "*"
},
"require-dev": {
"phpunit/phpunit": "7.*",
"mikey179/vfsStream": "1.3.*"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}