├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── package.json └── src ├── Concerns ├── SnapshotDirectoryAware.php └── SnapshotIdAware.php ├── Driver.php ├── Drivers ├── HtmlDriver.php ├── ImageDriver.php ├── JsonDriver.php ├── ObjectDriver.php ├── TextDriver.php ├── XmlDriver.php └── YamlDriver.php ├── Exceptions └── CantBeSerialized.php ├── Filename.php ├── Filesystem.php ├── MatchesSnapshots.php └── Snapshot.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/package.json -------------------------------------------------------------------------------- /src/Concerns/SnapshotDirectoryAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Concerns/SnapshotDirectoryAware.php -------------------------------------------------------------------------------- /src/Concerns/SnapshotIdAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Concerns/SnapshotIdAware.php -------------------------------------------------------------------------------- /src/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Driver.php -------------------------------------------------------------------------------- /src/Drivers/HtmlDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/HtmlDriver.php -------------------------------------------------------------------------------- /src/Drivers/ImageDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/ImageDriver.php -------------------------------------------------------------------------------- /src/Drivers/JsonDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/JsonDriver.php -------------------------------------------------------------------------------- /src/Drivers/ObjectDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/ObjectDriver.php -------------------------------------------------------------------------------- /src/Drivers/TextDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/TextDriver.php -------------------------------------------------------------------------------- /src/Drivers/XmlDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/XmlDriver.php -------------------------------------------------------------------------------- /src/Drivers/YamlDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Drivers/YamlDriver.php -------------------------------------------------------------------------------- /src/Exceptions/CantBeSerialized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Exceptions/CantBeSerialized.php -------------------------------------------------------------------------------- /src/Filename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Filename.php -------------------------------------------------------------------------------- /src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Filesystem.php -------------------------------------------------------------------------------- /src/MatchesSnapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/MatchesSnapshots.php -------------------------------------------------------------------------------- /src/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/phpunit-snapshot-assertions/HEAD/src/Snapshot.php --------------------------------------------------------------------------------