-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 801 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 801 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
{
"name": "krystalcode/api-session",
"type": "library",
"description": "Provides session management functionality for API clients including requesting, refreshing and storing access tokens.",
"keywords": ["API", "session"],
"homepage": "https://github.com/krystalcode/php-api-session",
"license": "MIT",
"authors": [
{
"name": "krystalcode",
"homepage": "https://github.com/krystalcode"
}
],
"support": {
"issues": "https://github.com/krystalcode/php-api-session/issues",
"source": "https://github.com/krystalcode/php-api-session"
},
"require": {
"php": "^8.0",
"league/oauth2-client": "^2.0"
},
"autoload": {
"psr-4": { "KrystalCode\\Api\\Session\\": "src/" }
}
}