forked from galette-community/plugin-oauth2
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 904 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 904 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
36
{
"name": "galette/plugin-oauth2",
"description": "Plugin for oauth2 login",
"license": "GPLv3",
"type": "project",
"autoload": {
"psr-4": {
"GaletteOAuth2\\": "lib/GaletteOAuth2"
}
},
"authors": [
{
"name": "Manuel H",
"email": "manuelh78dev@ik.me"
}, {
"name": "Johan Cwiklinski",
"email": "trasher@x-tnd.be"
}
],
"require": {
"php": ">=8.1",
"league/oauth2-server": "^8.4",
"hassankhan/config": "^3.1",
"defuse/php-encryption": "^2.4",
"psr/http-message": "1.1",
"league/uri": "7.4",
"paragonie/sodium_compat_ext_sodium": "^1.0"
},
"config": {
"optimize-autoloader": true
},
"require-dev": {
"galette/oauth2-galette": "dev-develop",
"guzzlehttp/guzzle": "^7.8"
}
}