├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── circle.yml ├── composer.json ├── phpunit.xml ├── src └── FasterImage │ ├── Exception │ └── InvalidImageException.php │ ├── ExifParser.php │ ├── FasterImage.php │ └── ImageParser.php └── tests └── FasterImageTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | composer.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FasterImage/Exception/InvalidImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/src/FasterImage/Exception/InvalidImageException.php -------------------------------------------------------------------------------- /src/FasterImage/ExifParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/src/FasterImage/ExifParser.php -------------------------------------------------------------------------------- /src/FasterImage/FasterImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/src/FasterImage/FasterImage.php -------------------------------------------------------------------------------- /src/FasterImage/ImageParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/src/FasterImage/ImageParser.php -------------------------------------------------------------------------------- /tests/FasterImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willwashburn/fasterimage/HEAD/tests/FasterImageTest.php --------------------------------------------------------------------------------