Skip to content

Commit fcbca86

Browse files
authored
Prepare 4.0 (#21)
1 parent 7ab08fa commit fcbca86

File tree

3 files changed

+9
-19
lines changed

3 files changed

+9
-19
lines changed

.github/workflows/tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
- '8.2'
2828
- '8.3'
2929
symfony-version:
30-
- 3.4.*
3130
- 4.4.*
3231
- 5.*
3332
- 6.*

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,18 @@
44
</a>
55
</p>
66

7-
# Sentry pre-configured PHP SDK
7+
# Official Sentry SDK for PHP
88

99
[![Monthly Downloads](https://poser.pugx.org/sentry/sdk/d/monthly)](https://packagist.org/packages/sentry/sdk)
1010
[![Latest Stable Version](https://poser.pugx.org/sentry/sdk/v/stable)](https://packagist.org/packages/sentry/sdk)
1111
[![License](https://poser.pugx.org/sentry/sdk/license)](https://packagist.org/packages/sentry/sdk)
1212

13-
This is a metapackage shipping [sentry/sentry](https://github.com/getsentry/sentry-php) with our recommend httpclient.
14-
If you are having troubles with our suggested http layer, please directly install `sentry/sentry` with the http client you prefer.
13+
This is a meta package that **historically** shipped [sentry/sentry](https://github.com/getsentry/sentry-php) with an HTTP client.
1514

16-
We recommend:
15+
We recommend using [sentry/sentry](https://github.com/getsentry/sentry-php) instead.
1716

17+
```bash
18+
composer require sentry/sentry
1819
```
19-
"http-interop/http-factory-guzzle": "^1.0",
20-
"symfony/http-client": "^4.3|^5.0"
21-
```
22-
23-
as the http layer.
2420

25-
Since this is only a meta package, if you are finding this repo and having issues please create an issue on our main repo: [Issue Tracker](https://github.com/getsentry/sentry-php/issues)
21+
Since this is only a meta package, if you are finding this repo and having issues, please create an issue on our main repository's [issue tracker](https://github.com/getsentry/sentry-php/issues)

composer.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sentry/sdk",
33
"type": "metapackage",
4-
"description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
4+
"description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
55
"keywords": [
66
"sentry",
77
"log",
@@ -20,14 +20,9 @@
2020
}
2121
],
2222
"require": {
23-
"sentry/sentry": "^3.19",
24-
"http-interop/http-factory-guzzle": "^1.0",
25-
"symfony/http-client": "^4.3|^5.0|^6.0"
23+
"sentry/sentry": "^4.0"
2624
},
2725
"config": {
28-
"sort-packages": true,
29-
"allow-plugins": {
30-
"php-http/discovery": false
31-
}
26+
"sort-packages": true
3227
}
3328
}

0 commit comments

Comments
 (0)