├── .gitignore ├── README.md ├── composer.json └── src ├── Dist ├── ImageFieldInerface.php ├── ImageFieldLocal.php ├── ImageFile.php └── ImageService.php ├── EloquentImageMutatorProvider.php ├── EloquentImageMutatorTrait.php └── config └── image.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/composer.json -------------------------------------------------------------------------------- /src/Dist/ImageFieldInerface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/Dist/ImageFieldInerface.php -------------------------------------------------------------------------------- /src/Dist/ImageFieldLocal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/Dist/ImageFieldLocal.php -------------------------------------------------------------------------------- /src/Dist/ImageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/Dist/ImageFile.php -------------------------------------------------------------------------------- /src/Dist/ImageService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/Dist/ImageService.php -------------------------------------------------------------------------------- /src/EloquentImageMutatorProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/EloquentImageMutatorProvider.php -------------------------------------------------------------------------------- /src/EloquentImageMutatorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/EloquentImageMutatorTrait.php -------------------------------------------------------------------------------- /src/config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahusoftcom/eloquent-image-mutator/HEAD/src/config/image.php --------------------------------------------------------------------------------