-
Notifications
You must be signed in to change notification settings - Fork 105
Port #209 to 1.x as suggested in #221 #226
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,12 @@ | ||
| ======= | ||
| 1.7.0 (20??-??-??) | ||
| ------------------ | ||
|
|
||
| * 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. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Document the bump to 5.6 as a PHP minimum version
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Point added. |
||
| * raised requirement for minimum PHP version to 5.6.0 | ||
|
|
||
|
|
||
| 1.6.8 (2019-10-30) | ||
| ------------------ | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs; | ||
|
|
||
| use bovigo\vfs\DotDirectory as Base; | ||
|
|
||
| class_exists('bovigo\vfs\DotDirectory'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\DotDirectory" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\DotDirectory" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\DotDirectory" instead */ | ||
| class DotDirectory extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs; | ||
|
|
||
| use bovigo\vfs\Quota as Base; | ||
|
|
||
| class_exists('bovigo\vfs\Quota'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\Quota" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\Quota" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\Quota" instead */ | ||
| class Quota extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs\content; | ||
|
|
||
| use bovigo\vfs\content\FileContent as Base; | ||
|
|
||
| interface_exists('bovigo\vfs\content\FileContent'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\content\FileContent" interface is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\content\FileContent" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\FileContent" instead */ | ||
| interface FileContent extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs\content; | ||
|
|
||
| use bovigo\vfs\content\LargeFileContent as Base; | ||
|
|
||
| class_exists('bovigo\vfs\content\LargeFileContent'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\content\LargeFileContent" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\content\LargeFileContent" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\LargeFileContent" instead */ | ||
| class LargeFileContent extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs\content; | ||
|
|
||
| use bovigo\vfs\content\SeekableFileContent as Base; | ||
|
|
||
| class_exists('bovigo\vfs\content\SeekableFileContent'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\content\SeekableFileContent" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\content\SeekableFileContent" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\SeekableFileContent" instead */ | ||
| abstract class SeekableFileContent extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs\content; | ||
|
|
||
| use bovigo\vfs\content\StringBasedFileContent as Base; | ||
|
|
||
| class_exists('bovigo\vfs\content\StringBasedFileContent'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\content\StringBasedFileContent" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\content\StringBasedFileContent" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\StringBasedFileContent" instead */ | ||
| class StringBasedFileContent extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs; | ||
|
|
||
| use bovigo\vfs\vfsStream as Base; | ||
|
|
||
| class_exists('bovigo\vfs\vfsStream'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\vfsStream" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\vfsStream" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\vfsStream" instead */ | ||
| class vfsStream extends Base | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?php | ||
|
|
||
| namespace org\bovigo\vfs; | ||
|
|
||
| use bovigo\vfs\vfsStreamAbstractContent as Base; | ||
|
|
||
| class_exists('bovigo\vfs\vfsStreamAbstractContent'); | ||
|
|
||
| @trigger_error('Using the "org\bovigo\vfs\vfsStreamAbstractContent" class is deprecated since version 1.7 and will be removed in version 2, use "bovigo\vfs\vfsStreamAbstractContent" instead.', E_USER_DEPRECATED); | ||
|
|
||
| if (\false) { | ||
| /** @deprecated since 1.7, use "bovigo\vfs\vfsStreamAbstractContent" instead */ | ||
| abstract class vfsStreamAbstractContent extends Base | ||
| { | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
vfsStream/composer.json
Line 20 in 9260406
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.