-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "klipper/security-oauth",
"type": "library",
"description": "Security Oauth component of Klipper",
"license": "MIT",
"authors": [
{
"name": "François Pluchino",
"email": "francois.pluchino@klipper.dev"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4.0|^8.0.0",
"doctrine/orm": "^2.13.0",
"klipper/config": "^2.0.0",
"klipper/model": "^2.0.0",
"league/oauth2-server": "^8.1.0",
"symfony/config": "^5.4.0",
"symfony/security-core": "^5.4.0",
"symfony/security-http": "^5.4.0"
},
"require-dev": {
"klipper/security": "^2.0.0",
"symfony/console": "^5.4.0",
"symfony/event-dispatcher": "^5.4.0",
"symfony/process": "^5.4.0"
},
"autoload": {
"psr-4": { "Klipper\\Component\\SecurityOauth\\": "" },
"exclude-from-classmap": [
"**/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}