-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 984 Bytes
/
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
{
"name": "shihjay2/openid-connect-uma-php",
"description": "Bare-bones OpenID Connect and UMA client",
"homepage": "https://github.com/shihjay2/openid-connect-uma-php",
"keywords": ["openid", "uma", "php"],
"type": "library",
"authors": [
{
"name" : "Michael Chen",
"role" : "Developer",
"homepage" : "https://github.com/shihjay2/"
},
{
"name": "Michael Jett",
"homepage" : "https://github.com/jumbojett/"
}
],
"license": "Apache-2.0",
"require": {
"php": ">=5.4",
"phpseclib/phpseclib" : "2.0.1",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^4.8"
},
"archive" : {
"exclude" : [
".*"
]
},
"autoload" : {
"psr-4": {
"Shihjay2\\" : "src"
},
"files": [ "src/functions.php" ]
}
}