-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.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
{
"name": "wearesho-team/yii2-authorization",
"description": "Redis Authorization Tokens for Yii2",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Letnikow",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"horat1us/yii2-asset-free": "^1.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7"
},
"require": {
"php": "^8.1",
"horat1us/yii2-environment-config": "^1.0",
"nesbot/carbon": "^2.24 || ^3",
"ramsey/uuid": "^3.6 | ^4.7",
"yiisoft/yii2": "^2.0.15",
"yiisoft/yii2-redis": "^2.0"
},
"autoload": {
"psr-4": {
"Wearesho\\Yii2\\Authorization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wearesho\\Yii2\\Authorization\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 1800,
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"yiisoft/yii2-composer": false
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR12 ./src ./tests",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR12 ./src ./tests",
"test": "./vendor/bin/phpunit",
"cover": "./vendor/bin/phpunit --coverage-clover=coverage.xml"
}
}