├── .gitignore ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── README_ZH.md ├── bin └── phpmig ├── composer.json ├── doc ├── Migrating from PHP 5.2.x to PHP 5.3.x.md ├── Migrating from PHP 5.3.x to PHP 5.4.x.md ├── Migrating from PHP 5.4.x to PHP 5.5.x.md ├── Migrating from PHP 5.5.x to PHP 5.6.x.md └── migration70.yml ├── phpunit.xml ├── src ├── App.php ├── Changes │ ├── AbstractChange.php │ ├── AbstractIntroduced.php │ ├── AbstractKeywordReserved.php │ ├── AbstractRemoved.php │ ├── ClassTree.php │ ├── RemoveTableItemTrait.php │ ├── v5dot3 │ │ ├── Deprecated.php │ │ ├── IncompByReference.php │ │ ├── IncompCallFromGlobal.php │ │ ├── IncompMagic.php │ │ ├── IncompMagicInvoked.php │ │ ├── IncompMisc.php │ │ ├── IncompReserved.php │ │ ├── Introduced.php │ │ └── Removed.php │ ├── v5dot4 │ │ ├── Deprecated.php │ │ ├── IncompBreakContinue.php │ │ ├── IncompByReference.php │ │ ├── IncompHashAlgo.php │ │ ├── IncompMisc.php │ │ ├── IncompParamName.php │ │ ├── IncompRegister.php │ │ ├── IncompReserved.php │ │ ├── Introduced.php │ │ └── Removed.php │ ├── v5dot5 │ │ ├── Deprecated.php │ │ ├── IncompCaseInsensitive.php │ │ ├── IncompPack.php │ │ ├── Introduced.php │ │ └── Removed.php │ ├── v5dot6 │ │ ├── Deprecated.php │ │ ├── IncompMisc.php │ │ ├── IncompPropertyArray.php │ │ ├── Introduced.php │ │ └── Removed.php │ └── v7dot0 │ │ ├── Deprecated.php │ │ ├── ExceptionHandle.php │ │ ├── ForeachLoop.php │ │ ├── FuncList.php │ │ ├── FuncParameters.php │ │ ├── IntegerOperation.php │ │ ├── Introduced.php │ │ ├── KeywordReserved.php │ │ ├── ParseDifference.php │ │ ├── Removed.php │ │ ├── StringOperation.php │ │ └── SwitchMultipleDefaults.php ├── CheckVisitor.php ├── Logger.php ├── ReduceVisitor.php ├── Sets │ ├── classtree.json │ ├── to53.json │ ├── to54.json │ ├── to55.json │ ├── to56.json │ ├── to70.json │ ├── v53.json │ ├── v54.json │ ├── v55.json │ ├── v56.json │ └── v70.json ├── SymbolTable.php └── Utils │ ├── FunctionListExporter.php │ ├── Logging.php │ ├── Packager.php │ └── ParserHelper.php └── tests ├── Changes ├── AbstractChangeTest.php ├── AbstractIntroducedTest.php ├── AbstractRemovedTest.php ├── v5dot3 │ ├── DeprecatedTest.php │ ├── IncompByReferenceTest.php │ ├── IncompCallFromGlobalTest.php │ ├── IncompMagicInvokedTest.php │ ├── IncompMagicTest.php │ ├── IncompMiscTest.php │ ├── IntroducedTest.php │ └── RemovedTest.php ├── v5dot4 │ ├── DeprecatedTest.php │ ├── IncompBreakContinueTest.php │ ├── IncompByReferenceTest.php │ ├── IncompHashAlgoTest.php │ ├── IncompMiscTest.php │ ├── IncompParamNameTest.php │ ├── IncompRegisterTest.php │ ├── IntroducedTest.php │ └── RemovedTest.php ├── v5dot5 │ ├── DeprecatedTest.php │ ├── IncompCaseInsensitiveTest.php │ ├── IncompPackTest.php │ ├── IntroducedTest.php │ └── RemovedTest.php ├── v5dot6 │ ├── DeprecatedTest.php │ ├── IncompMiscTest.php │ ├── IncompPropertyArrayTest.php │ ├── IntroducedTest.php │ └── RemovedTest.php └── v7dot0 │ ├── DeprecatedTest.php │ ├── ExceptionHandleTest.php │ ├── ForeachLoopTest.php │ ├── FuncListTest.php │ ├── FuncParametersTest.php │ ├── IntegerOperationTest.php │ ├── IntroducedTest.php │ ├── KeywordReservedTest.php │ ├── ParseDifferenceTest.php │ ├── ParserTest.php │ ├── RemovedTest.php │ ├── StringOperationTest.php │ └── SwitchMultipleDefaultsTest.php ├── SymbolTableTest.php ├── Utils └── TestHelper.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/README_ZH.md -------------------------------------------------------------------------------- /bin/phpmig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/bin/phpmig -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/composer.json -------------------------------------------------------------------------------- /doc/Migrating from PHP 5.2.x to PHP 5.3.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/doc/Migrating from PHP 5.2.x to PHP 5.3.x.md -------------------------------------------------------------------------------- /doc/Migrating from PHP 5.3.x to PHP 5.4.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/doc/Migrating from PHP 5.3.x to PHP 5.4.x.md -------------------------------------------------------------------------------- /doc/Migrating from PHP 5.4.x to PHP 5.5.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/doc/Migrating from PHP 5.4.x to PHP 5.5.x.md -------------------------------------------------------------------------------- /doc/Migrating from PHP 5.5.x to PHP 5.6.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/doc/Migrating from PHP 5.5.x to PHP 5.6.x.md -------------------------------------------------------------------------------- /doc/migration70.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/doc/migration70.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/App.php -------------------------------------------------------------------------------- /src/Changes/AbstractChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/AbstractChange.php -------------------------------------------------------------------------------- /src/Changes/AbstractIntroduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/AbstractIntroduced.php -------------------------------------------------------------------------------- /src/Changes/AbstractKeywordReserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/AbstractKeywordReserved.php -------------------------------------------------------------------------------- /src/Changes/AbstractRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/AbstractRemoved.php -------------------------------------------------------------------------------- /src/Changes/ClassTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/ClassTree.php -------------------------------------------------------------------------------- /src/Changes/RemoveTableItemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/RemoveTableItemTrait.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/Deprecated.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompByReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompByReference.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompCallFromGlobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompCallFromGlobal.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompMagic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompMagic.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompMagicInvoked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompMagicInvoked.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompMisc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompMisc.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/IncompReserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/IncompReserved.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/Introduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/Introduced.php -------------------------------------------------------------------------------- /src/Changes/v5dot3/Removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot3/Removed.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/Deprecated.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompBreakContinue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompBreakContinue.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompByReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompByReference.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompHashAlgo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompHashAlgo.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompMisc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompMisc.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompParamName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompParamName.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompRegister.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/IncompReserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/IncompReserved.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/Introduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/Introduced.php -------------------------------------------------------------------------------- /src/Changes/v5dot4/Removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot4/Removed.php -------------------------------------------------------------------------------- /src/Changes/v5dot5/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot5/Deprecated.php -------------------------------------------------------------------------------- /src/Changes/v5dot5/IncompCaseInsensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot5/IncompCaseInsensitive.php -------------------------------------------------------------------------------- /src/Changes/v5dot5/IncompPack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot5/IncompPack.php -------------------------------------------------------------------------------- /src/Changes/v5dot5/Introduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot5/Introduced.php -------------------------------------------------------------------------------- /src/Changes/v5dot5/Removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot5/Removed.php -------------------------------------------------------------------------------- /src/Changes/v5dot6/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot6/Deprecated.php -------------------------------------------------------------------------------- /src/Changes/v5dot6/IncompMisc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot6/IncompMisc.php -------------------------------------------------------------------------------- /src/Changes/v5dot6/IncompPropertyArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot6/IncompPropertyArray.php -------------------------------------------------------------------------------- /src/Changes/v5dot6/Introduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot6/Introduced.php -------------------------------------------------------------------------------- /src/Changes/v5dot6/Removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v5dot6/Removed.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/Deprecated.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/ExceptionHandle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/ExceptionHandle.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/ForeachLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/ForeachLoop.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/FuncList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/FuncList.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/FuncParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/FuncParameters.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/IntegerOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/IntegerOperation.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/Introduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/Introduced.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/KeywordReserved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/KeywordReserved.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/ParseDifference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/ParseDifference.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/Removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/Removed.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/StringOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/StringOperation.php -------------------------------------------------------------------------------- /src/Changes/v7dot0/SwitchMultipleDefaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Changes/v7dot0/SwitchMultipleDefaults.php -------------------------------------------------------------------------------- /src/CheckVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/CheckVisitor.php -------------------------------------------------------------------------------- /src/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Logger.php -------------------------------------------------------------------------------- /src/ReduceVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/ReduceVisitor.php -------------------------------------------------------------------------------- /src/Sets/classtree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/classtree.json -------------------------------------------------------------------------------- /src/Sets/to53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/to53.json -------------------------------------------------------------------------------- /src/Sets/to54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/to54.json -------------------------------------------------------------------------------- /src/Sets/to55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/to55.json -------------------------------------------------------------------------------- /src/Sets/to56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/to56.json -------------------------------------------------------------------------------- /src/Sets/to70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/to70.json -------------------------------------------------------------------------------- /src/Sets/v53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/v53.json -------------------------------------------------------------------------------- /src/Sets/v54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/v54.json -------------------------------------------------------------------------------- /src/Sets/v55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/v55.json -------------------------------------------------------------------------------- /src/Sets/v56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/v56.json -------------------------------------------------------------------------------- /src/Sets/v70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Sets/v70.json -------------------------------------------------------------------------------- /src/SymbolTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/SymbolTable.php -------------------------------------------------------------------------------- /src/Utils/FunctionListExporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Utils/FunctionListExporter.php -------------------------------------------------------------------------------- /src/Utils/Logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Utils/Logging.php -------------------------------------------------------------------------------- /src/Utils/Packager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Utils/Packager.php -------------------------------------------------------------------------------- /src/Utils/ParserHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/src/Utils/ParserHelper.php -------------------------------------------------------------------------------- /tests/Changes/AbstractChangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/AbstractChangeTest.php -------------------------------------------------------------------------------- /tests/Changes/AbstractIntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/AbstractIntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/AbstractRemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/AbstractRemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/DeprecatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/DeprecatedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IncompByReferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IncompByReferenceTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IncompCallFromGlobalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IncompCallFromGlobalTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IncompMagicInvokedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IncompMagicInvokedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IncompMagicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IncompMagicTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IncompMiscTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IncompMiscTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/IntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/IntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot3/RemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot3/RemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/DeprecatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/DeprecatedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompBreakContinueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompBreakContinueTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompByReferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompByReferenceTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompHashAlgoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompHashAlgoTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompMiscTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompMiscTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompParamNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompParamNameTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IncompRegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IncompRegisterTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/IntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/IntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot4/RemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot4/RemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot5/DeprecatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot5/DeprecatedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot5/IncompCaseInsensitiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot5/IncompCaseInsensitiveTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot5/IncompPackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot5/IncompPackTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot5/IntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot5/IntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot5/RemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot5/RemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot6/DeprecatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot6/DeprecatedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot6/IncompMiscTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot6/IncompMiscTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot6/IncompPropertyArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot6/IncompPropertyArrayTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot6/IntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot6/IntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/v5dot6/RemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v5dot6/RemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/DeprecatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/DeprecatedTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/ExceptionHandleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/ExceptionHandleTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/ForeachLoopTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/ForeachLoopTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/FuncListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/FuncListTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/FuncParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/FuncParametersTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/IntegerOperationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/IntegerOperationTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/IntroducedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/IntroducedTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/KeywordReservedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/KeywordReservedTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/ParseDifferenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/ParseDifferenceTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/ParserTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/RemovedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/RemovedTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/StringOperationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/StringOperationTest.php -------------------------------------------------------------------------------- /tests/Changes/v7dot0/SwitchMultipleDefaultsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Changes/v7dot0/SwitchMultipleDefaultsTest.php -------------------------------------------------------------------------------- /tests/SymbolTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/SymbolTableTest.php -------------------------------------------------------------------------------- /tests/Utils/TestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/Utils/TestHelper.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monque/PHP-Migration/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------