-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.13 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
{
"name": "oliverschloebe/oauth2-steadyhq",
"description": "Steady OAuth 2.0 package for the PHP League's OAuth 2.0 Client",
"license": "MIT",
"authors": [
{
"name": "Oliver Schlöbe",
"email": "[email protected]",
"role": "Developer"
}
],
"keywords": [
"php",
"api",
"oauth",
"oauth2",
"client",
"authorization",
"authorisation",
"idp",
"identity",
"sso",
"single sign on",
"steadyhq"
],
"support": {
"issues": "https://github.com/oliverschloebe/oauth2-steadyhq/issues",
"source": "https://github.com/oliverschloebe/oauth2-steadyhq.git"
},
"require": {
"php": "^8.0",
"league/oauth2-client": "^2.7"
},
"require-dev": {
"eloquent/liberator": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpunit/phpunit": "^5.7 || ^6.0 || ^9.5",
"squizlabs/php_codesniffer": "^2.3 || ^3.0",
"mockery/mockery": "^1.3.5"
},
"autoload": {
"psr-4": {
"OliverSchloebe\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OliverSchloebe\\OAuth2\\Client\\Test\\": "test/src/"
}
}
}