Open nyamsprod opened 5 months ago
@wouterj @kelunik @shadowhand For context the packages were mentioned in regards to a PR in Symfony to include a new URI component. One of the blocker was the PSR-7 dependency of all the packages. IMHO this dependency is important but not crucial for the package to work. Hence I put together the following proposal. Your thoughts, remarks, suggestions are welcomed.
These are ideas no definitive solutions. The goal is to improve the situation without adding more headache to users of the packages.
Of note: regardless of Symfony decision I still believe this is still something we need to address whether the solution lands now or when developing the next major release whichever comes first.
This is a pretty amazing opportunity to contribute years of work and knowledge to a foundational part of the PHP ecosystem, congrats!
My perfect solution for this situation would be:
For what it is worth, I think the current repository split is confusing and makes it harder to contribute to this package. I worry about trying to do too many things in one place, as opposed to a core package with dependents.
Donate league/uri to Symfony (as symfony/uri) and deprecate this package. If Symfony creates a separate URI implementation, this package will almost certainly see usage dry up. If you want to continue to share your knowledge and skill in this domain, perhaps Symfony would allow you to continue maintain the package?
This is purely my personal opinion, but keeping league/uri
in the PHP league organization and Symfony using it instead of creating symfony/uri
is a valid option as well (which is what we're currently discussing in Symfony).
Does that change your perfection solution? (i.e. does that still make donating the package to Symfony the ideal scenario?)
@wouterj yes, I still think donating the whole package is the ideal scenario.
@shadowhand before donating something one has to wonder what is the endgoal for Symfony. At the moment the developers from Symfony are not clear in their own intention and I still reserved the right to not donate the package but I think/hope I understand your argumentation for such action.
Having said that I am still open for a debate on what is best for the community at large where that solution is depend fully on us knowing if we can or not collaborate and meet half way in any given solution.
But it does not preclude the fact that some architectural changes are still needed in the package and those can be made gradually via a minor releases or more aggressively via a major release and that is the main reason for the ticket.
Making the package "more attractive" for anyone to work on it is a side effect of those decisions not the otherway around at least that is how I see it.
@shadowhand Symfony will no longer try to create its own package but will wait for the URL class implementation of PHP itself which is currently under development so donation is no longer on the table if it was ever considered.
Feature Request
Introduction
League uri packages are made up of three (3) packages:
uri-interfaces
: contains contracts and utility classes to perform primitive process around URIuri
: contains concrete classes to handle complete URI and URI templates and depends onuri-interfaces
uri-components
: contains concrete classes to handle URI components and depends onuri
.Having the contracts being defined on
uri-interfaces
makes the dependency a bit too complex to decouple. For instance theuri
package does not depend nor does it requiresuri-components
interfaces. Having those interface being loaded when requiring theuri
package make little sense.Using the same argument the
uri
package does not require thePSR-7
interfaces. The package provides a PSR-7UriInterface
implementation. But that implementation is optional and is not a requirement for the package to work. So putting thePSR-7
andPSR-17
requirements in thesuggest
section of the composer file seems reasonable. If compatibility withPSR
interfaces is a requirement explicitly requiring the extra package is a better option. It makes the dependency clearer and cleaner from a developer POV. The goal of this feature is toWe have two proposals:
Proposal 1:
uri-interfaces
packages which will only contains utility classes.uri
package.uri
package.uri-component
package.uri-component
package.The consequences:
uri-interfaces
which will be bumped to v8.uri
dependencies stays as isuri-components
dependencies stays as isuri
anduri-components
will only be bump to a minor version v7.5.Issues/Open questions:
uri-src
is unable to handle 2 major versions release at the same time.UriAccess
interface uses the PSR-7UriInterface
in a union type for a return type. Is that affected by having PSR-7 classes optional inside theuri-package
?Proposal 2:
uri-helpers
which will only contains utility classes.uri
package.uri
package.uri-component
package.uri-component
package.The consequences:
uri
will now depend only onuri-helpers
uri-components
dependencies stays as isuri-interfaces
package is deprecated (ie does not receive any updated and will still be requested and installed when using older version of uri version.7.5
(includinguri-helpers
)Issues/Open questions:
uri-interfaces
to be sure it has been deprecated and no longer received automatic update. We still need to keep it in line in case of security issue with the newuri-helpers
package.uri
in between version can this be considered as BC break for theuri
package or not ? According to this issue it does not: https://github.com/semver/semver/issues/148UriAccess
interface uses the PSR-7UriInterface
in a union type for a return type. Is that affected by having PSR-7 classes optional inside theuri-package
?uri-helpers
will conflict withuri-interfaces
normally the conflict should be minimal on updateuri-interfaces
package should be replaced byuri-helpers
. A conflict can only arise if someone did require only theuri-interfaces
and then later on requires a version higher than 7.4 of any other package. But this can be solve by either removinguri-interfaces
or by installinguri-components
.Future scope
Once the Interfaces have been moved to their appropriate package we should question their utilities and if they should be removed/replace/split or if we should add more. Those changes should be examined in a context of a major BC break and for inclusion in the next major release for the library.