-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 loc) · 1.83 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
{
"name": "diablomedia/zf2-oauth2-server",
"description": "ZF2 implementation of oauth2-server-php",
"keywords": [
"oauth",
"oauth2",
"auth",
"zf2",
"zendframework",
"laminas"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ari Pringle",
"email": "[email protected]",
"homepage": "https://diablomedia.com/"
},
{
"name": "Jay Klehr",
"email": "[email protected]",
"homepage": "https://diablomedia.com/"
}
],
"homepage": "https://github.com/diablomedia/zf2-oauth2-server",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"bshaffer/oauth2-server-php": "^1.10",
"diablomedia/oauth2-server-zendhttp-bridge": "^3.0.0",
"laminas/laminas-form": "^2.0.0 || ^3.0.0",
"laminas/laminas-view": "^2.0.0",
"laminas/laminas-mvc": "^2.0 || ^3.0",
"psr/container": "^1.0 || ^2.0",
"laminas/laminas-modulemanager": "^2.10",
"laminas/laminas-servicemanager": "^3.6"
},
"autoload": {
"psr-0": {
"OAuth2Server": "src/"
},
"classmap": [
"./Module.php"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.56.0",
"phpstan/phpstan": "1.10.67",
"maglnet/composer-require-checker": "^2.0 || ^3.0",
"phpro/grumphp-shim": "^0.22.0 || ^1.1"
},
"scripts": {
"fix-style": "php-cs-fixer fix",
"check-style": "php-cs-fixer fix --dry-run -vv",
"phpstan": "phpstan analyze -c phpstan.neon --no-progress --ansi"
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true,
"ocramius/package-versions": true
}
}
}