forked from intersvyaz/yii-sentry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 886 Bytes
/
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
{
"name": "skillshare/yii-sentry",
"description": "Sentry component and LogRoute for Yii1",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"yiisoft/yii": "^1.1",
"sentry/sdk": "^3.0"
},
"require-dev":{
"mockery/mockery": "^1.4",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^5.2"
},
"autoload": {
"psr-4": {"Skillshare\\YiiSentry\\": ""}
},
"autoload-dev": {
"psr-4": {
"Skillshare\\YiiSentry\\Test\\": "Tests/Unit"
}
},
"authors" : [],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}