forked from hellowearemito/yii2-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.11 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
{
"name": "mito/yii2-sentry",
"description": "Yii 2 extension for Sentry",
"type": "yii2-extension",
"keywords": ["yii2","extension","sentry"],
"license": "MIT",
"authors": [
{
"name": "Albert Borsos",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"sentry/sentry": "~1.8",
"bower-asset/raven-js": "~3.17",
"php": ">=5.6.0"
},
"require-dev": {
"yiisoft/yii2-codeception": "~2.0",
"satooshi/php-coveralls": "~1.0",
"codeception/codeception": "~2.3",
"codeception/specify": " *",
"codeception/verify": " *",
"codeception/mockery-module": "^0.2.2",
"mito/yii2-coding-standards": "~2.0.0@beta"
},
"autoload": {
"psr-4": {
"mito\\sentry\\": "src/",
"mito\\sentry\\tests\\": "tests/"
}
},
"config": {
"fxp-asset": {
"installer-paths": {
"bower-asset-library": "vendor/bower"
},
"pattern-skip-version": "(-build|-patch)"
}
}
}