-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.01 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "userbase/client",
"description": "UserBase PHP Client: Identity + Login + Signup Service",
"homepage": "https://github.com/linkorb/userbase-client-php",
"keywords": ["login", "signup", "user", "account"],
"type": "library",
"authors": [
{
"name": "Joost Faassen",
"email": "j.faassen@linkorb.com",
"role": "Development"
},
{
"name": "kaushik prajapati",
"email": "prajapatikaushik@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"ext-curl": "*",
"linkorb/userbase-role-contracts": "^2.0",
"psr/cache": "^3.0",
"symfony/cache": "^5.4 || ^6.4 || ^7.2",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0.0",
"symfony/security-core": "^5.4 || ^6.4 || ^7.2"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"UserBase\\Client\\": "src/"
}
}
}