forked from trikoder/oauth2-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "trikoder/oauth2-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle which provides OAuth 2.0 authorization/resource server capabilities.",
"keywords": ["oauth2"],
"homepage": "https://www.trikoder.net/",
"license": "MIT",
"authors": [
{
"name": "Antonio Pauletich",
"email": "[email protected]"
},
{
"name": "Berislav Balogović",
"email": "[email protected]"
},
{
"name": "Petar Obradović",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ajgarlag/psr-http-message-bundle": "^1.1",
"doctrine/doctrine-bundle": "^1.8|^2.0",
"doctrine/orm": "^2.7",
"league/oauth2-server": "^8.0",
"psr/http-factory": "^1.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/security-bundle": "^4.4|^5.0"
},
"require-dev": {
"ext-timecop": "*",
"ext-xdebug": "*",
"laminas/laminas-diactoros": "^2.2",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^8.5|^9.4",
"symfony/browser-kit": "^4.4|^5.0",
"symfony/phpunit-bridge": "^5.0"
},
"autoload": {
"psr-4": { "Trikoder\\Bundle\\OAuth2Bundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"lint": "php-cs-fixer fix",
"test": "phpunit"
},
"suggest": {
"nelmio/cors-bundle": "For handling CORS requests",
"nyholm/psr7": "For a super lightweight PSR-7/17 implementation",
"defuse/php-encryption": "For better performance when doing encryption"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}