-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
105 lines (105 loc) · 3.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "rhertogh/yii2-oauth2-server",
"description": "A Yii2 Oauth 2 and OpenID Connect server based on thephpleague/oauth2-server",
"keywords": [
"Yii2",
"Oauth 2",
"OpenID Connect"
],
"type": "yii2-extension",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/rhertogh/yii2-oauth2-server/issues",
"source": "https://github.com/rhertogh/yii2-oauth2-server"
},
"authors": [
{
"name": "Rutger Hertogh"
}
],
"require": {
"php": ">=7.4.0",
"yiisoft/yii2": "~2.0.49",
"league/oauth2-server": "~8.4.2"
},
"require-dev": {
"ext-json": "*",
"ext-xdebug": "*",
"yiisoft/yii2": "dev-master",
"yiisoft/yii2-coding-standards": "~2.0",
"yiisoft/yii2-apidoc": "~3.0.6",
"codeception/codeception": "~4.1.22",
"codeception/module-yii2": "~1.1.3",
"codeception/module-asserts": "~1.3.1",
"codeception/module-rest": "~1.3.2",
"yiisoft/yii2-debug": "~2.1.18",
"yiisoft/yii2-bootstrap4": "~2.0.10",
"schmunk42/yii2-giiant": "dev-master#7d27dd40604af842905768d6be43bcc96c02cee2",
"vlucas/phpdotenv": "~5.3",
"league/oauth2-client": "~2.7.0",
"yiisoft/yii2-authclient": "dev-master",
"web-token/jwt-checker": "~2.2.11",
"web-token/jwt-key-mgmt": "~2.2.11",
"web-token/jwt-signature": "~2.2.11",
"web-token/jwt-signature-algorithm-hmac": "~2.2.11",
"web-token/jwt-signature-algorithm-ecdsa": "~2.2.11",
"web-token/jwt-signature-algorithm-rsa": "~2.2.11",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "^3.8",
"proget-hq/phpstan-yii2": "*"
},
"autoload": {
"psr-4": {
"rhertogh\\Yii2Oauth2Server\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yii2Oauth2ServerTests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
},
"composer-exit-on-patch-failure": true,
"patches": {
"phpunit/phpunit-mock-objects": {
"Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
},
"phpunit/phpunit": {
"Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
"Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
}
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs -d memory_limit=1G",
"phpcbf": "vendor/bin/phpcbf -d memory_limit=1G",
"phpcsf-view": "vendor/bin/php-cs-fixer fix --dry-run -v",
"phpcsf-fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan --memory-limit=1G",
"apidoc": "apidoc api src .output/docs/api --page-title \"Yii2 Oauth2 Server API Documentation\" --interactive=0"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"archive": {
"exclude": [
"sample",
"tests"
]
}
}