-
Notifications
You must be signed in to change notification settings - Fork 102
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
Port #209 to 1.x as suggested in #221 #226
Conversation
include: | ||
- php: 5.5 | ||
dist: precise | ||
- php: 5.4 | ||
dist: precise | ||
- php: 5.3 | ||
dist: precise |
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.
If we're dropping 5.3 - 5.5 support in this PR for the 1.7.x series, then we should bump the composer.json as well.
Line 20 in 9260406
"php": ">=5.3.0" |
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.
You are right, just adjusted that. Anybody still running these PHP versions has larger problems than upgrading to the next version of vfsStream, I guess, so it should be safe to drop support for those.
------------------ | ||
|
||
* Namespace changed from `org\bovigo\vfs` to `bovigo\vfs` | ||
- The old namespace still works, but has been deprecated. It will be removed in version 2. |
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.
Document the bump to 5.6 as a PHP minimum version
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.
Point added.
This ports the namespace change introduced with #209 to the 1.x series, as suggested in #221. This allows users to upgrade to 1.7 and adjust the used namespace.
This doesn't contain the name changes for the classes and interfaces yet. I'll introduce those in a separate PR once this gets approved and merged.