forked from arnaud-lb/oauth2-php
-
Notifications
You must be signed in to change notification settings - Fork 113
/
composer.json
46 lines (43 loc) · 1.07 KB
/
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
41
42
43
44
45
46
{
"name": "friendsofsymfony/oauth2-php",
"type": "library",
"description": "OAuth2 library",
"license": "MIT",
"keywords": ["oauth", "oauth2"],
"homepage": "https://github.com/FriendsOfSymfony/oauth2-php",
"authors": [
{
"name": "Arnaud Le Blanc",
"email": "arnaud.lb@gmail.com"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/FriendsOfSymfony/oauth2-php/contributors"
}
],
"require": {
"php": "^5.5.9 || ^7.0.8 || ^7.1.3 || ^7.2.5 || ^8.0.0",
"symfony/http-foundation": "~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^8.0 || ^9.0.0"
},
"autoload": {
"psr-4": {
"OAuth2\\": "lib/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"OAuth2\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}