-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 783 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 783 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
{
"name": "bshaffer/oauth2-server-httpfoundation-bridge",
"description":"A bridge to HttpFoundation for oauth2-server-php",
"keywords":["oauth","oauth2","auth","httpfoundation"],
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Brent Shaffer",
"email": "bshafs@gmail.com",
"homepage":"http://brentertainment.com"
}
],
"homepage": "http://github.com/bshaffer/oauth2-server-httpfoundation-bridge",
"require":{
"php":">=8.0",
"bshaffer/oauth2-server-php": "^1.13",
"symfony/http-foundation": "^5.4||^6.0||^7.0"
},
"autoload": {
"psr-0": { "OAuth2\\HttpFoundationBridge": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}