-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
port #209 to 1.x as suggested in #221 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. * raise requirement for minimum PHP version to 5.6.0 * remove builds with PHP < 5.6
- Loading branch information
Showing
100 changed files
with
1,289 additions
and
175 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.