-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
34 lines (34 loc) · 903 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": "baibaratsky/yii2-rollbar",
"description": "Rollbar for Yii2",
"type": "yii2-extension",
"keywords": ["rollbar", "ratchetio", "ratchet.io", "yii", "yii2", "log", "error", "exception", "debug", "monitoring"],
"license": "BSD-3-Clause",
"homepage": "http://github.com/baibaratsky/yii2-rollbar",
"authors": [
{
"name": "Andrei Baibaratsky",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"yiisoft/yii2": "^2.0",
"rollbar/rollbar": "^3.1 || ^4.0.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"baibaratsky\\yii\\rollbar\\": ""
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"require-dev": {
"vimeo/psalm": "^5.1"
}
}