├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── pixelmatch.js ├── composer.json ├── package.json ├── phpstan-baseline.neon ├── phpstan.neon.dist └── src ├── Exceptions ├── CouldNotCompare.php ├── InvalidImage.php └── InvalidThreshold.php ├── Pixelmatch.php └── PixelmatchResult.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/README.md -------------------------------------------------------------------------------- /bin/pixelmatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/bin/pixelmatch.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/package.json -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /src/Exceptions/CouldNotCompare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/src/Exceptions/CouldNotCompare.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/src/Exceptions/InvalidImage.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidThreshold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/src/Exceptions/InvalidThreshold.php -------------------------------------------------------------------------------- /src/Pixelmatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/src/Pixelmatch.php -------------------------------------------------------------------------------- /src/PixelmatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/pixelmatch-php/HEAD/src/PixelmatchResult.php --------------------------------------------------------------------------------