Packagist missing versions #1297
-
Trying to install sentry/sdk using Composer, kept getting this error
Checking Packagist: It only has those releases listed, not any others. I realise there's workarounds here. But given Packagist is the default repository used by Composer, it would make sense to have the other releases listed here too. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You are looking at a meta package which you should install the latest version of. This is a convenience package that includes the recommended HTTP client. If you want a specific version of the SDK itself you need this package: https://packagist.org/packages/sentry/sentry. You can also require both packages to select a specific SDK while also pulling in the recommended HTTP client. It seems like you are trying to install version 1.11? This is a really old version, are you sure that is the one you need? That version predates the metapackage anyway 😅 |
Beta Was this translation helpful? Give feedback.
You are looking at a meta package which you should install the latest version of. This is a convenience package that includes the recommended HTTP client.
If you want a specific version of the SDK itself you need this package: https://packagist.org/packages/sentry/sentry.
You can also require both packages to select a specific SDK while also pulling in the recommended HTTP client.
It seems like you are trying to install version 1.11? This is a really old version, are you sure that is the one you need? That version predates the metapackage anyway 😅