├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── infection.json ├── phpunit.xml.dist ├── src ├── Editor.php ├── Parser │ ├── Parser.php │ ├── Token.php │ └── Tokenizer.php ├── Type │ ├── ArrayType.php │ ├── BoolType.php │ ├── FloatType.php │ ├── IntegerType.php │ ├── NullType.php │ ├── ObjectCustomSerializedType.php │ ├── ObjectDefaultSerializedType.php │ ├── ReferenceType.php │ ├── StringType.php │ └── Type.php └── TypeFragment │ ├── ArrayElement.php │ ├── ArrayElementIntegerIndex.php │ ├── ArrayElementStringIndex.php │ └── ObjectProperty.php └── tests ├── EditorTest.php ├── Parser ├── ParserTest.php ├── TokenTest.php └── TokenizerTest.php ├── Type ├── ArrayTypeTest.php ├── BoolTypeTest.php ├── FloatTypeTest.php ├── IntegerTypeTest.php ├── NullTypeTest.php ├── ObjectCustomSerializedTypeTest.php ├── ObjectDefaultSerializedTypeTest.php ├── ReferenceTypeTest.php └── StringTypeTest.php ├── TypeFragment ├── ArrayElementIntegerIndexTest.php ├── ArrayElementStringIndexTest.php └── ObjectPropertyTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/infection.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Editor.php -------------------------------------------------------------------------------- /src/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Parser/Parser.php -------------------------------------------------------------------------------- /src/Parser/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Parser/Token.php -------------------------------------------------------------------------------- /src/Parser/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Parser/Tokenizer.php -------------------------------------------------------------------------------- /src/Type/ArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/ArrayType.php -------------------------------------------------------------------------------- /src/Type/BoolType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/BoolType.php -------------------------------------------------------------------------------- /src/Type/FloatType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/FloatType.php -------------------------------------------------------------------------------- /src/Type/IntegerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/IntegerType.php -------------------------------------------------------------------------------- /src/Type/NullType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/NullType.php -------------------------------------------------------------------------------- /src/Type/ObjectCustomSerializedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/ObjectCustomSerializedType.php -------------------------------------------------------------------------------- /src/Type/ObjectDefaultSerializedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/ObjectDefaultSerializedType.php -------------------------------------------------------------------------------- /src/Type/ReferenceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/ReferenceType.php -------------------------------------------------------------------------------- /src/Type/StringType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/StringType.php -------------------------------------------------------------------------------- /src/Type/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/Type/Type.php -------------------------------------------------------------------------------- /src/TypeFragment/ArrayElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/TypeFragment/ArrayElement.php -------------------------------------------------------------------------------- /src/TypeFragment/ArrayElementIntegerIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/TypeFragment/ArrayElementIntegerIndex.php -------------------------------------------------------------------------------- /src/TypeFragment/ArrayElementStringIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/TypeFragment/ArrayElementStringIndex.php -------------------------------------------------------------------------------- /src/TypeFragment/ObjectProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/src/TypeFragment/ObjectProperty.php -------------------------------------------------------------------------------- /tests/EditorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/EditorTest.php -------------------------------------------------------------------------------- /tests/Parser/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Parser/ParserTest.php -------------------------------------------------------------------------------- /tests/Parser/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Parser/TokenTest.php -------------------------------------------------------------------------------- /tests/Parser/TokenizerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Parser/TokenizerTest.php -------------------------------------------------------------------------------- /tests/Type/ArrayTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/ArrayTypeTest.php -------------------------------------------------------------------------------- /tests/Type/BoolTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/BoolTypeTest.php -------------------------------------------------------------------------------- /tests/Type/FloatTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/FloatTypeTest.php -------------------------------------------------------------------------------- /tests/Type/IntegerTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/IntegerTypeTest.php -------------------------------------------------------------------------------- /tests/Type/NullTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/NullTypeTest.php -------------------------------------------------------------------------------- /tests/Type/ObjectCustomSerializedTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/ObjectCustomSerializedTypeTest.php -------------------------------------------------------------------------------- /tests/Type/ObjectDefaultSerializedTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/ObjectDefaultSerializedTypeTest.php -------------------------------------------------------------------------------- /tests/Type/ReferenceTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/ReferenceTypeTest.php -------------------------------------------------------------------------------- /tests/Type/StringTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/Type/StringTypeTest.php -------------------------------------------------------------------------------- /tests/TypeFragment/ArrayElementIntegerIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/TypeFragment/ArrayElementIntegerIndexTest.php -------------------------------------------------------------------------------- /tests/TypeFragment/ArrayElementStringIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/TypeFragment/ArrayElementStringIndexTest.php -------------------------------------------------------------------------------- /tests/TypeFragment/ObjectPropertyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ptlis/php-serialized-data-editor/HEAD/tests/TypeFragment/ObjectPropertyTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |