-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 869 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 869 Bytes
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
{
"name": "studio-design/studio-auth-php",
"description": "PHP SDK for Studio Auth Service API",
"type": "library",
"keywords": [
"oauth2",
"oidc",
"authentication",
"api",
"sdk",
"php"
],
"homepage": "https://github.com/studio-design/studio-auth-php",
"license": "MIT",
"authors": [
{
"name": "Studio Design"
}
],
"support": {
"issues": "https://github.com/studio-design/studio-auth-php/issues",
"source": "https://github.com/studio-design/studio-auth-php"
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.4.5",
"guzzlehttp/psr7": "^2.0"
},
"autoload": {
"psr-4": { "Studio\\Auth\\" : "src/" }
}
}