-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow tag handler to be auto-wired #132
Conversation
Co-authored-by: Andrew Longosz <[email protected]>
There are interfaces here w/o the suffix as well, so up to you :) Edit: Dropped the interface, name conflict and not clear that we need this. Might also break if FosHttpCache 3.x adds return type as well so does not belong here. |
@ViniTou / @vidarl / @alongosz Simplified and passing, could you have a look? Reminder this is in order to simplify HttpCache doc in ibexa/documentation-developer#1071 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, except if using composer preview channel may cause other problems
It might, but QA/@mnocon was ok with it for some packages where needed as canary testing for switching to it completely once it's stable. |
@@ -37,7 +37,8 @@ branches: | |||
- /^\d.\d+$/ | |||
|
|||
before_script: | |||
- travis_retry composer selfupdate | |||
# To try to avoid running out of memory on PHP 5, and speed up install on all, using Composer 2.x here | |||
- travis_retry composer self-update --preview |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: This will be skipped on merge up to 2.0 as @alongosz was saying there where issues with Composer 2.0 on v3, which for some reason are not on v2.5.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: This will be skipped on merge up to 2.0 as @alongosz was saying there where issues with Composer 2.0 on v3, which for some reason are not on v2.5.
If for this package there are no issues (tests are passing), then you might keep it.
We'll need to remove it anyway once composer 2 is released, because Travis already performs self-update, but stable only (AFAICS no way to configure it :( )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some suggestions:
@@ -37,7 +37,8 @@ branches: | |||
- /^\d.\d+$/ | |||
|
|||
before_script: | |||
- travis_retry composer selfupdate | |||
# To try to avoid running out of memory on PHP 5, and speed up install on all, using Composer 2.x here | |||
- travis_retry composer self-update --preview |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: This will be skipped on merge up to 2.0 as @alongosz was saying there where issues with Composer 2.0 on v3, which for some reason are not on v2.5.
If for this package there are no issues (tests are passing), then you might keep it.
We'll need to remove it anyway once composer 2 is released, because Travis already performs self-update, but stable only (AFAICS no way to configure it :( )
Co-authored-by: Andrew Longosz <[email protected]>
In order to simplify use / doc on this, in a way that is future proof across versions.
TODO:
$ composer test
)$ composer fix-cs
).