-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathcomposer.json
70 lines (70 loc) · 2.06 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
66
67
68
69
70
{
"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": "antonio.pauletich@trikoder.net"
},
{
"name": "Berislav Balogović",
"email": "berislav.balogovic@trikoder.net"
},
{
"name": "Petar Obradović",
"email": "petar.obradovic@trikoder.net"
}
],
"require": {
"php": ">=7.2",
"ajgarlag/psr-http-message-bundle": "^1.1",
"doctrine/doctrine-bundle": "^2.0.8",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^2.4",
"league/oauth2-server": "^8.4.1",
"psr/http-factory": "^1.0",
"symfony/framework-bundle": "^4.4|^5.4",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/security-bundle": "^4.4|^5.4"
},
"require-dev": {
"ext-timecop": "*",
"ext-xdebug": "*",
"doctrine/dbal": "^2.13.9",
"laminas/laminas-diactoros": "^2.2",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^8.5|^9.4",
"symfony/browser-kit": "^4.4|^5.4",
"symfony/phpunit-bridge": "^6.3"
},
"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,
"allow-plugins": {
"ocramius/package-versions": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}