Deprecate delighted package - Delighted sunset June 30, 2026#31
Draft
Deprecate delighted package - Delighted sunset June 30, 2026#31
Conversation
Delighted is being sunset on June 30, 2026. This is the final release of the delighted PHP package. Changes: - Bump version to 4.2.0 - Add E_USER_DEPRECATED trigger_error on require - Update author email to hello@delighted.com (active support address) - Add deprecation banner to README (visible on Packagist page) - Add deprecation entry to CHANGELOG See: https://help.delighted.com/article/840-delighted-sunset-faq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Delighted is being sunset on June 30, 2026. This is the final release of the
delighted/delightedPHP package (v4.2.0), marking it as deprecated.For more information, visit the Delighted Sunset FAQ.
Changes
lib/Delighted/Version.php: Bumped version to4.2.0. Added@trigger_error()withE_USER_DEPRECATEDto issue a runtime deprecation notice when the package is loaded.composer.json: Updatedauthor_emailfor Ben Turner fromben@delighted.comtohello@delighted.com(the active support address).README.md: Added deprecation banner at the top (visible on Packagist).CHANGELOG.md: Added4.2.0deprecation entry.What users will see
On
composer install/composer update: Packagist "abandoned" warning (once applied via Packagist web UI).At runtime (when the Client class is used): An
E_USER_DEPRECATEDnotice is triggered, which appears in error logs and deprecation-aware tools (Symfony deprecation logger, PHPStan, etc.).On the Packagist page: "This package is abandoned" banner + deprecation banner in README.
Pre-merge validation (all passed)
php -r "require 'lib/Delighted/Version.php'; echo \Delighted\VERSION;"4.2.0E_USER_DEPRECATEDfiresAfter merging
v4.2.0Local validation steps
1. Verify version constant
2. Verify E_USER_DEPRECATED fires