forked from sgomez/simplesamlphp-module-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.37 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "exeba/simplesamlphp-module-oauth2",
"description": "A SimpleSAMLphp module adding support for the OAuth2 protocol.",
"type": "simplesamlphp-module",
"keywords": [ "oauth2" ],
"license": "MIT",
"authors": [
{
"name": "Sergio Gómez",
"email": "sergio@uco.es"
},
{
"name": "Sebastiano Degan",
"email": "sebdeg87@gmail.com"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\oauth2\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Module\\oauth2\\": "tests/src"
}
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-pdo": "*",
"simplesamlphp/composer-module-installer": "~1.0",
"league/oauth2-server": "^8.1",
"nette/forms": "~3.0",
"laminas/laminas-diactoros": "^2.4",
"symfony/psr-http-message-bridge": "^2.0",
"psr/http-server-middleware": "^1.0",
"doctrine/orm": "^2.10"
},
"require-dev": {
"simplesamlphp/simplesamlphp" : "^2.0.0",
"phpunit/phpunit": "^9.0",
"dama/doctrine-test-bundle": "^7.1",
"doctrine/data-fixtures": "^1.5"
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true
}
}
}