All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to Semantic Versioning.
6.8.0 (2026-04-28)
6.7.0 (2026-02-23)
6.6.2 (2025-11-20)
6.6.1 (2025-10-20)
6.6.0 (2025-04-08)
6.5.2 (2025-03-25)
6.5.1 (2025-03-17)
6.5.0 (2025-03-13)
6.4.0 (2025-01-17)
6.3.0 (2024-10-22)
6.2.0 (2024-06-11)
6.1.0 (2024-03-15)
Warning
If you are using the Relay Proxy, please make sure to update to v8.4.0 before updating to this version of the SDK. Failure to do so will affect the events sent to LaunchDarkly and any support data export integrations.
- Redact anonymous attributes within feature events (#193) (cdad89a)
- Update to event schema v4 (#192) (475727f)
6.0.2 (2024-01-23)
6.0.1 (2023-12-01)
The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized.
For detailed information about this version, refer to the list below. For information on how to upgrade from the previous version, read the migration guide.
- A new
Migratortype which provides an out-of-the-box configurable migration framework. - For more advanced use cases, added new
migrationVariationandtrackMigrationOperationmethods onLDClient.
- PHP 8.0 support was removed.
- The legacy user format for contexts is no longer supported. To learn more, read the Contexts documentation.
- Methods which originally took an
LDContextor anLDUsernow only accept anLDContext. - Previously deprecated test data flag builder methods
variationForAllUsers,valueForAllUsers, andclearUserTargetshave been removed.
LDUseris now deprecated in favor ofLDContext.
- Invalid context log message now includes the flag key as part of the Psr\Log context. (Thanks, mrtus!)
- Error logging now includes the exception in the Psr\Log exception context key. (Thanks, mrtus!)
- Introduced support for an
application_infoconfig property which sets application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations.
- Introduced support for an
application_infoconfig property which sets application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations.
The latest version of this SDK supports LaunchDarkly's new custom contexts feature. Contexts are an evolution of a previously-existing concept, "users." Contexts let you create targeting rules for feature flags based on a variety of different information, including attributes pertaining to users, organizations, devices, and more. You can even combine contexts to create "multi-contexts."
For detailed information about this version, please refer to the list below. For information on how to upgrade from the previous version, please read the migration guide.
- The type
LDContextdefines the new "context" model. "Contexts" are a replacement for the earlier concept of "users"; they can be populated with attributes in more or less the same way as before, but they also support new behaviors. To learn more, read the documentation. - For all SDK methods that took an
LDUserparameter, the parameter type can now be eitherLDUserorLDContext. The SDK still supportsLDUserfor now, butLDContextis the preferred model andLDUsermay be removed in a future version.
- It was previously allowable to set a user key to an empty string. In the new context model, the key is not allowed to be empty. Trying to use an empty key will cause evaluations to fail and return the default value.
- There is no longer such a thing as a
secondarymeta-attribute that affects percentage rollouts. If you set an attribute with that name inLDContext, it will simply be a custom attribute like any other. - Component interface types like
EventPublisherandFeatureRequesterwhich applications are unlikely to reference directly (except when defining a custom component implementation) have been moved out of the main namespace into a new namespace,LaunchDarkly\Subsystems.
- The minimum PHP version is now 8.0.
- The SDK is now more strictly compliant with the LaunchDarkly specification for date and semantic version values. This means that some values that might have been accepted in the past, which other SDKs would not accept, are now correctly considered invalid. Please review the LaunchDarkly documentation on Using date/time and semantic version operators.
- Analytics event data now uses a new JSON schema due to differences between the context model and the old user model.
- Fixed a bug in the parsing of string values in feature flags and user attributes when they were referenced with date/time operators in a targeting rule. As described in LaunchDarkly documentation, such values must use the RFC3339 date/time format; the SDK was also accepting strings in other formats (for instance, ones that did not have a time or a time zone), which would cause undefined behavior inconsistent with evaluations done by other LaunchDarkly services. This fix ensures that all targeting rules that reference an invalid date/time value are a non-match, and does not affect how the SDK treats values that are in the correct format.
- The SDK was allowing numeric values to be treated as semantic versions in targeting rules. It now correctly only allows strings, as described in LaunchDarkly documentation.
- Removed all types, fields, and methods that were deprecated as of the most recent 4.x release.
- Removed the
secondarymeta-attribute inLDUserandLDUserBuilder. - The
aliasmethod no longer exists because alias events are not needed in the new context model. - The
inline_users_in_eventsoption no longer exists because it is not relevant in the new context model.
- CI builds now include a cross-platform test suite implemented in https://github.com/launchdarkly/sdk-test-harness. This is in addition to unit test coverage, and ensures consistent behavior across SDKs.
- Setting a
base_uriorevents_uriwith a non-empty path, such ashttp://my-reverse-proxy-host/launchdarkly-requests, did not work. - The object returned by
allFlagsState(), when converted to JSON, had an incorrect format in the case where no flags exist.
- Expanded upper version restriction on Monolog.
- The TestData class was incorrectly generating an error when updating a changed flag. (Thanks, aretenz!)
- Expanded lower version restriction on Guzzle.
- Add support for psr/log v2 and v3.
- The LaunchDarkly\Integrations\TestData is a new way to inject feature flag data programmatically into the SDK for testing—either with fixed values for each flag, or with targets and/or rules that can return different values for different users. Unlike LaunchDarkly\Integrations\Files, this mechanism does not use any external resources, only the data that your test code has provided.
- The curl command used for publishing events will now honor the connect_timeout parameter.
- Publishing events on Windows will now use PowerShell and Invoke-WebRequest instead of curl.
- Numeric strings are no longer treated like numbers in equality checks.
- User attributes with values of 0 or false will no longer be filtered out of event payloads.
- When using allFlagsState to produce bootstrap data for the JavaScript SDK, the PHP SDK was not returning the correct metadata for evaluations that involved an experiment. As a result, the analytics events produced by the JavaScript SDK did not correctly reflect experimentation results.
This major version release is for updating PHP compatibility, simplifying the SDK's dependencies, and removing deprecated names.
Except for the dependency changes described below which may require minor changes in your build, usage of the SDK has not changed in this release. For more details about changes that may be necessary, see the 3.x to 4.0 migration guide.
Dropping support for obsolete PHP versions makes it easier to maintain the SDK and keep its dependencies up to date. See LaunchDarkly's End of Life Policy regarding platform version support.
Simplifying dependencies by moving optional integration features into separate packages reduces the size of the SDK bundle, as well as reducing potential compatibility problems and vulnerabilities.
- Added type declarations to all methods. These could result in a
TypeErrorat runtime if you have been passing values of the wrong types to SDK methods (including passing anullvalue for a parameter that should not be null)-- although in most cases, this would have caused an error anyway at some point in the SDK code, just not such a clearly identifiable error. To detect type mistakes before runtime, you can use a static analysis tool such as Psalm.
- The minimum PHP version is now 7.3.
- Updated many dependencies to newer versions and/or more actively maintained packages.
- Removed the bundled Redis, DynamoDB, and Consul integrations. These are now provided as separate packages; see php-server-sdk-redis-predis, php-server-sdk-redis-phpredis, php-server-sdk-dynamodb, and php-server-sdk-consul.
- Removed all types and methods that were deprecated in the last 3.x version.
- Removed implementation types from the
LaunchDarklynamespace that were annotated as@internaland not documented, such as types that are part of the internal feature data model. These are not meant for use by application code, and are always subject to change. They have been moved intoLaunchDarklyImpl.
- The
phpredisintegration was ignoring thephpredis_clientoption for passing in a preconfigured Redis client. (Thanks, CameronHall!)
- The SDK now supports the ability to control the proportion of traffic allocation to an experiment. This works in conjunction with a new platform feature now available to early access customers.
- Added the
aliasmethod toLDClient. This can be used to associate two user objects for analytics purposes with an alias event.
- When using
Files.featureRequester, if a data file did not contain valid JSON, the SDK would throw a PHP syntax error instead of the expected "File is not valid JSON" error. (Thanks, GuiEloiSantos!)
PHPRedis::featureRequesterwas not recognizing thephpredis_clientoption. (Thanks, riekelt!)
- Fixed a warning message which erroneously referred to the wrong method.
- When using the DynamoDB data store integration with a prefix string, the prefix was being prepended to keys with a slash separator (example:
my-prefix/features:my-flag-key). This was inconsistent with the colon separator that is used in the other server-side SDKs (example:my-prefix:features:my-flag-key), making the PHP SDK unable to read flags that were put into the database by other SDKs or by the Relay Proxy, if a prefix was used. This has been fixed to be consistent with the other SDKs. (#138)
- The SDK could try to send analytics events even if
send_eventshad been set to false. This bug was introduced in the 3.6.0 release. - A
usestatement with the wrong namespace was causing Composer to print a deprecation warning. (Thanks, bfenton-smugmug!)
- Loosened the Monolog dependency constraint so that it will accept either a 1.x or a 2.x version. This should be compatible with all currently supported PHP versions; the SDK's use of Monolog does not rely on any features that are specific to 1.x. (Thanks, mrtus!)
- In rare circumstances (depending on the exact data in the flag configuration, the flag's salt value, and the user properties), a percentage rollout could fail and return a default value, logging the error "Data inconsistency in feature flag ... variation/rollout object with no variation or rollout". This would happen if the user's hashed value fell exactly at the end of the last "bucket" (the last variation defined in the rollout). This has been fixed so that the user will get the last variation.
- Added integration with the
phpredisextension, which has similar functionality to the already-supportedpredisbut may have better performance (sincepredisis written in pure PHP, whereasphpredisuses a C extension). SeeLaunchDarkly::Integrations::PHPRedis. (Thanks, nicofff!)
- Added support for upcoming LaunchDarkly experimentation features. See
LDClient.track.
- The SDK could throw an exception when calling
allFlagsState()if APC/APCu caching was enabled. This bug was introduced in the 3.5.0 release. (Thanks, omnicolor!) - Improved unit test coverage for the caching logic.
- Changed the package name from
launchdarkly/launchdarkly-phptolaunchdarkly/server-sdk
There are no other changes in this release. Substituting launchdarkly/launchdarkly-php version 3.5.3 with launchdarkly/server-sdk version 3.5.4 will not affect functionality.
- Segment rollout calculations did not work correctly if the rollout was based on a user attribute other than
key; all users would end up in the same bucket. (Thanks, m6w6!) - Running the SDK unit tests is now simpler, as the database integrations can be skipped. See
CONTRIBUTING.md.
The LaunchDarkly SDK repositories are being renamed for consistency. This repository is now php-server-sdk rather than php-client.
The package name will also change. In the 3.5.3 release, it is still launchdarkly/launchdarkly-php; in all future releases, it will be launchdarkly/server-sdk. No further updates to the launchdarkly/launchdarkly-php package will be published after this release.
- In the 3.5.1 release, the
VERSIONconstant was incorrectly still reporting the version as "3.5.0". The constant is now correct. There are no other changes in this release.
- Setting user attributes to non-string values when a string was expected would cause analytics events not to be processed. The SDK will now convert attribute values to strings as needed.
- If
trackoridentifyis called without a user, the SDK now logs a warning, and does not send an analytics event to LaunchDarkly (since it would not be processed without a user).
- It is now possible to use Consul or DynamoDB as a data store with
ld-relay, similar to the existing Redis integration. SeeLaunchDarkly\Integrations\ConsulandLaunchDarkly\Integrations\DynamoDb, and the reference guide Persistent data stores. - When using the Redis integration, you can specify a Redis connection timeout different from the default of 5 seconds by setting the option
redis_timeoutto the desired number of seconds. (Thanks, jjozefowicz!) - It is now possible to inject feature flags into the client from local JSON files, replacing the normal LaunchDarkly connection. This would typically be for testing purposes. See
LaunchDarkly\Integrations\Files. - The
allFlagsStatemethod now accepts a new option,detailsOnlyForTrackedFlags, which reduces the size of the JSON representation of the flag state by omitting some metadata. Specifically, it omits any data that is normally used for generating detailed evaluation events if a flag does not have event tracking or debugging turned on.
- The
feature_requesterandevent_publisherconfiguration options now work differently: you can still set them to an instance of an implementation object, but you can also set them to a class or a class name (i.e. the same as thefeature_requester_classoption), or a factory function. Therefore, the_classversions of these options are no longer necessary. However, the old semantics still work, so you can for instance setevent_publisher_classto"LaunchDarkly\GuzzleEventPublisher", even though the new preferred way is to setevent_publishertoLaunchDarkly\Integrations\Guzzle::featureRequester().
- JSON data from
allFlagsStateis now slightly smaller even if you do not use the new option described above, because it omits the flag property for event tracking unless that property is true. - The
$_anonymousproperty of theLDUserclass was showing up as public rather than protected. (Thanks, dstockto!)
- Improved the performance of
allFlags/allFlagsStateby not making redundant individual requests for prerequisite flags, when a flag is being evaluated that has prerequisites. Instead it will reuse the same flag data that it already obtained from LaunchDarkly in the "get all the flags" request.
- The new
LDClientmethodvariationDetailallows you to evaluate a feature flag (using the same parameters as you would forvariation) and receive more information about how the value was calculated. This information is returned in an object that contains both the result value and a "reason" object which will tell you, for instance, if the user was individually targeted for the flag or was matched by one of the flag's rules, or if the flag returned the default value due to an error.
- When evaluating a prerequisite feature flag, the analytics event for the evaluation did not include the result value if the prerequisite flag was off.
- The new
LDClientmethodallFlagsState()should be used instead ofallFlags()if you are passing flag data to the front end for use with the JavaScript SDK. It preserves some flag metadata that the front end requires in order to send analytics events correctly. Versions 2.5.0 and above of the JavaScript SDK are able to use this metadata, but the output ofallFlagsState()will still work with older versions. - The
allFlagsState()method also allows you to select only client-side-enabled flags to pass to the front end, by using the optionclientSideOnly => true.
LDClient.allFlags()
- The
LDClient::VERSIONconstant has been fixed to report the current version. In the previous release, it was still set to 3.1.0.
- The client now treats most HTTP 4xx errors as unrecoverable: that is, after receiving such an error, it will take the client offline (for the lifetime of the client instance, which in most PHP applications is just the current request-response cycle). This is because such errors indicate either a configuration problem (invalid SDK key) or a bug, which is not likely to resolve without a restart or an upgrade. This does not apply if the error is 400, 408, 429, or any 5xx error.
- Made various changes to project settings to improve the IDE experience and the build; enforced PSR-2 coding style. (Thanks, localheinz!)
- Analytics events for feature evaluations now have a
variationproperty (the variation index) as well asvalue. This will allow for better performance in future versions ofld-relaywhen it is used with the PHP client.
- Fixed a bug that made segment-based rules always fall through when using
LDDFeatureRequester.
- Support for a new LaunchDarkly feature: reusable user segments.
- Adds support for a future LaunchDarkly feature, coming soon: semantic version user attributes.
- Support for private user attributes.
- Stop retrying HTTP requests if the API key has been invalidated.
- User bucketing supports integer attributes. Thanks @mlund01!
- Source code complies with the PSR-2 standard. Thanks @valerianpereira!
- The PSR-4 autoloading specification is now correct. Thanks @jenssegers!
- New
flushmethod forces events to be published to the LaunchDarkly service. This can be useful ifLDClientis not automatically destroyed at the end of a request. Thanks @foxted!
- Documentation comment references the correct namespace for
CacheStorageInterface. Thanks @pmeth!
- Support for publishing events via ld-relay
- Allow
EventPublisherto be injected into the client. GuzzleEventPublisheras a synchronous, in-process alternative to publishing events via background processes.- Allow the
curlpath used byCurlEventPublisherto be customized via thecurloption toLDClient. Thanks @abacaphiliac!
- Relaxed the requirement on
kevinrob/guzzle-cache-middlewarefor the defaultGuzzleFeatureRequester. - Added package suggestions in
composer.json.
- Better handling of possibly null variations. Thanks @idirouhab!
- Better handling of possibly null targets. Thanks @idirouhab!
- Better handling of possibly null rules.
- Allow FeatureRequester to be injected into the client. Thanks @abacaphiliac!
- Allow Predis\Client to be overriden in LDDFeatureRequester. Thanks @abacaphiliac!
- Use logger interface method instead of Monolog method. Thanks @abacaphiliac!
- Improve type hinting for default. Thanks @jdrieghe!
- Removed warning when calling
allFlagsviaLDDFeatureRequester - Removed warning when a feature flag's prerequisites happen to be null
- Use minimum versions in composer.json
- Made Monolog dependency version less strict
- Made Composer requirements less strict
- Fixed botched 2.0.2 release: Better handling of null vs false when evaluating.
- Better handling of null vs false when evaluating.
- Monolog is now a required dependency
- Support for multivariate feature flags. In addition to booleans, feature flags can now return numbers, strings, dictionaries, or arrays via the
variationmethod. - New
allFlagsmethod returns all flag values for a specified user. - New
secureModeHashfunction computes a hash suitable for the new LaunchDarkly JavaScript client's secure mode feature.
- The
FeatureRepdata model has been replaced withFeatureFlag.FeatureFlagis not generic.
- The
togglecall has been deprecated in favor ofvariation.
- The
getFlagfunction has been removed.