├── .editorconfig ├── .php_cs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist └── src ├── SnapshotAssertions.php └── SnapshotsManager.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/.editorconfig -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/.php_cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/SnapshotAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/src/SnapshotAssertions.php -------------------------------------------------------------------------------- /src/SnapshotsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madewithlove/phpunit-snapshots/HEAD/src/SnapshotsManager.php --------------------------------------------------------------------------------