This repository has been archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
66 lines (66 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "avto-dev/sentry-laravel",
"description": "Sentry for Laravel (a little bit tuned)",
"keywords": [
"laravel",
"sentry"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "avto-dev",
"homepage": "https://github.com/avto-dev"
}
],
"require": {
"php": "^7.2",
"illuminate/support": "~6.0 || ~7.0 || ~8.0",
"illuminate/container": "~6.0 || ~7.0 || ~8.0",
"sentry/sentry-laravel": "^1.6"
},
"require-dev": {
"avto-dev/app-version-laravel": "^2.1 || ~3.0",
"laravel/laravel": "~6.0 || ~7.0 || ~8.0",
"phpstan/phpstan": "^0.12",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5.4 || ^9.3"
},
"autoload": {
"psr-4": {
"AvtoDev\\Sentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\Sentry\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AvtoDev\\Sentry\\ServiceProvider"
]
}
},
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"suggest": {
"avto-dev/app-version-laravel": "Adds release version into sentry events (^3.0)"
},
"support": {
"issues": "https://github.com/avto-dev/sentry-laravel/issues",
"source": "https://github.com/avto-dev/sentry-laravel"
}
}