Open
Description
Do we intend to use semantic versioning for these standards? I assume that we do and that the semver guarantees will apply to both the service provider interface (SPI) and the client API, as is standard within the PHP ecosystem. If that is the case, I think we should consider also maintaining a semantic version number for only the client API. Perhaps this could be done within composer.json:
{
"name": "async-interop/event-loop",
"provide": {
"async-interop/event-loop-api": "1.0"
}
}
Client packages could then require async-interop/event-loop-api while loop implementations would require async-interop/event-loop.
This would allow us to make breaking changes to the SPI, for example adding a method to Driver
, without breaking all the client packages of event-loop.
Metadata
Metadata
Assignees
Labels
No labels