-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.45 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
47
48
49
50
51
52
53
{
"name": "refugis/oauth-bundle",
"description": "Easily integrate OAuth authentication in your Symfony application",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Braglia",
"email": "massimiliano.braglia@gmail.com"
},
{
"name": "Alessandro Chitolina",
"email": "alekitto@gmail.com"
},
{
"name": "Fazland Team",
"email": "devs@fazland.com"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"ext-openssl": "*",
"bshaffer/oauth2-server-httpfoundation-bridge": "^1.4",
"bshaffer/oauth2-server-php": "^1.11",
"cakephp/chronos": "^1.1|^2.0",
"lcobucci/jwt": "^4.0@dev",
"myclabs/php-enum": "^1.6",
"symfony/framework-bundle": "^4.3|^5.0",
"symfony/security-bundle": "^4.3|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^4.3|^5.0",
"symfony/console": "^4.3|^5.0",
"symfony/phpunit-bridge": "^4.3|^5.0",
"symfony/yaml": "^4.3|^5.0"
},
"autoload": {
"psr-4": {
"Refugis\\OAuthBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Refugis\\OAuthBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}