Skip to content

Commit e297267

Browse files
committed
fix: Bump sentry-sdk
1 parent 92d1557 commit e297267

File tree

2 files changed

+61
-48
lines changed

2 files changed

+61
-48
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626

2727
- The `sentry:test` artisan command no longer requires the secret key in the DSN (secret key in DSN deprecated since Sentry 9).
2828

29-
3029
## 0.9.1
3130

3231
- Allow setting custom formatter for the log channel. (#145)

composer.json

Lines changed: 61 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,66 @@
11
{
2-
"name": "sentry/sentry-laravel",
3-
"type": "library",
4-
"description": "Laravel integration for Sentry (https://sentry.io)",
5-
"keywords": ["logging", "errors", "laravel", "sentry"],
6-
"homepage": "https://sentry.io",
7-
"license": "Apache-2.0",
8-
"authors": [
9-
{
10-
"name": "Sentry"
11-
}
12-
],
13-
"require": {
14-
"php": "^7.1",
15-
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
16-
"sentry/sentry": "2.0.0-beta1"
17-
},
18-
"require-dev": {
19-
"phpunit/phpunit": "7.3.*",
20-
"laravel/framework": "5.7.*",
21-
"orchestra/testbench": "3.7.*",
22-
"friendsofphp/php-cs-fixer": "2.7.*"
2+
"name": "sentry/sentry-laravel",
3+
"type": "library",
4+
"description": "Laravel integration for Sentry (https://sentry.io)",
5+
"keywords": [
6+
"logging",
7+
"errors",
8+
"laravel",
9+
"sentry"
10+
],
11+
"homepage": "https://sentry.io",
12+
"license": "Apache-2.0",
13+
"authors": [
14+
{
15+
"name": "David Cramer",
16+
"email": "[email protected]"
2317
},
24-
"autoload": {
25-
"psr-0": {
26-
"Sentry\\Laravel\\": "src/"
27-
}
28-
},
29-
"scripts": {
30-
"tests": ["vendor/bin/phpunit --verbose"],
31-
"tests-travis": [
32-
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-clover test/clover.xml"
33-
],
34-
"tests-report": [
35-
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-html test/html-report"
36-
],
37-
"phpcs": [
38-
"vendor/bin/php-cs-fixer fix --config=.php_cs --verbose --diff --dry-run"
39-
]
18+
{
19+
"name": "Daniel Griesser",
20+
"email": "[email protected]"
21+
}
22+
],
23+
"require": {
24+
"php": "^7.1",
25+
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
26+
"sentry/sentry": "2.0.0-beta2"
27+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "7.3.*",
30+
"laravel/framework": "5.7.*",
31+
"orchestra/testbench": "3.7.*",
32+
"friendsofphp/php-cs-fixer": "2.7.*"
33+
},
34+
"autoload": {
35+
"psr-0": {
36+
"Sentry\\Laravel\\": "src/"
37+
}
38+
},
39+
"scripts": {
40+
"tests": [
41+
"vendor/bin/phpunit --verbose"
42+
],
43+
"tests-travis": [
44+
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-clover test/clover.xml"
45+
],
46+
"tests-report": [
47+
"vendor/bin/phpunit --verbose --configuration phpunit.xml --coverage-html test/html-report"
48+
],
49+
"phpcs": [
50+
"vendor/bin/php-cs-fixer fix --config=.php_cs --verbose --diff --dry-run"
51+
]
52+
},
53+
"extra": {
54+
"branch-alias": {
55+
"dev-master": "1.0.x-dev"
4056
},
41-
"extra": {
42-
"branch-alias": {
43-
"dev-master": "1.0.x-dev"
44-
},
45-
"laravel": {
46-
"providers": ["Sentry\\Laravel\\ServiceProvider"],
47-
"aliases": {
48-
"Sentry": "Sentry\\Laravel\\Facade"
49-
}
50-
}
57+
"laravel": {
58+
"providers": [
59+
"Sentry\\Laravel\\ServiceProvider"
60+
],
61+
"aliases": {
62+
"Sentry": "Sentry\\Laravel\\Facade"
63+
}
5164
}
65+
}
5266
}

0 commit comments

Comments
 (0)