├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── DisallowedClassesSubstitutor.php └── Unserialize.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | vendor/ 3 | phpunit.xml 4 | composer.lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/composer.json -------------------------------------------------------------------------------- /src/DisallowedClassesSubstitutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/src/DisallowedClassesSubstitutor.php -------------------------------------------------------------------------------- /src/Unserialize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrumann/polyfill-unserialize/HEAD/src/Unserialize.php --------------------------------------------------------------------------------