├── .travis.yml ├── LICENSE ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── AutoEmbedServiceProvider.php └── ImagesToAttachments.php └── tests ├── EmbedImagesTest.php └── data └── smallimage.png /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AutoEmbedServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/src/AutoEmbedServiceProvider.php -------------------------------------------------------------------------------- /src/ImagesToAttachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/src/ImagesToAttachments.php -------------------------------------------------------------------------------- /tests/EmbedImagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/tests/EmbedImagesTest.php -------------------------------------------------------------------------------- /tests/data/smallimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/molteber/puz-autoembed/HEAD/tests/data/smallimage.png --------------------------------------------------------------------------------