-
-
Notifications
You must be signed in to change notification settings - Fork 57
Fixed broken build #45
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
Conversation
Should we bump to v2 then? |
Yes, And introduce PSR17 factories. The PSR17 does not support php5. |
I just had a look at #43. That implementation makes it optional to use PSR 17 (HTTP factories). Then it makes no sense to drop PHP versions. This PR brings no changes nor drops any functionality. |
Wohoo build passes on Travis! |
Ping @nicolas-grekas |
.travis.yml
Outdated
# Test LTS versions. This makes sure we do not use Symfony packages with version greater | ||
# than 2 or 3 respectively. | ||
- php: 7.2 | ||
env: DEPENDENCIES="symfony/lts:^2 symfony/force-lowest:^2.8 zendframework/zend-diactoros:^1.4.1" |
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.
symfony/force-lowest should reference an exact version to work correctly:
symfony/force-lowest:=2.8 or symfony/force-lowest:v2.8
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.
(with comment)
Travis is happy again |
Thank you @Nyholm. |
This PR was squashed before being merged into the 1.0-dev branch (closes #45). Discussion ---------- Fixed broken build This PR updates travis.yml to adapt to our best practices: https://symfony.com/doc/current/bundles/best_practices.html It update our dependencies (dropping sf2.8 and unsupported symfony versions) It also remove use of deprecated code. Commits ------- 8780dd3 Fixed broken build
Thank you for merging |
This PR updates travis.yml to adapt to our best practices: https://symfony.com/doc/current/bundles/best_practices.html
It update our dependencies (dropping sf2.8 and unsupported symfony versions)
It also remove use of deprecated code.