forked from crisu83/yii-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1013 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
35
36
{
"name": "crisu83/yii-sentry",
"description": "Sentry for the Yii PHP framework.",
"keywords": ["yii", "sentry", "log", "error", "exception"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Christoffer Niska",
"email": "[email protected]",
"homepage": "http://www.cniska.net/"
}
],
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"sentry/sentry": "^2.0 || ^3.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.8",
"yiisoft/yii": "^1.1.14"
},
"scripts": {
"lint": [
"@parallel-lint",
"@phpstan"
],
"phpstan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"parallel-lint": "@php vendor/bin/parallel-lint --colors --show-deprecated --exclude vendor ."
},
"autoload": {
"classmap": [
"components/"
]
}
}