-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.07 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "cilogon/service-lib",
"description": "Library used by the CILogon Service",
"license": "NCSA",
"authors": [
{
"name": "Terry Fleury",
"email": "tfleury@cilogon.org",
"homepage": "http://www.cilogon.org"
}
],
"keywords": [
"authentication",
"authorization",
"cilogon"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.0.0",
"league/oauth2-google": "^4.0.0",
"league/oauth2-github": "^3.0.0",
"cilogon/oauth2-orcid": "^2.0.0",
"pear/log": "^1.14.0",
"pear/db": "dev-trunk",
"thenetworg/oauth2-azure": "^2.2.2",
"tubalmartin/cssmin": "^4.1.1",
"aws/aws-sdk-php": "^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.21",
"mockery/mockery": "^1.4.4",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"squizlabs/php_codesniffer": "^3.7.1"
},
"autoload": {
"psr-4": {
"CILogon\\": "src/"
}
}
}