├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── urlshortener.php ├── phpunit.xml ├── src ├── Drivers │ ├── BaseDriver.php │ ├── Bitly.php │ ├── Factory.php │ └── Google.php ├── Exceptions │ └── InvalidResponseException.php ├── Facades │ └── UrlShortener.php ├── UrlShortener.php └── UrlShortenerServiceProvider.php └── tests ├── FactoryTest.php ├── TestCase.php └── UrlShortenerTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/composer.json -------------------------------------------------------------------------------- /config/urlshortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/config/urlshortener.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Drivers/BaseDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Drivers/BaseDriver.php -------------------------------------------------------------------------------- /src/Drivers/Bitly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Drivers/Bitly.php -------------------------------------------------------------------------------- /src/Drivers/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Drivers/Factory.php -------------------------------------------------------------------------------- /src/Drivers/Google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Drivers/Google.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Exceptions/InvalidResponseException.php -------------------------------------------------------------------------------- /src/Facades/UrlShortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/Facades/UrlShortener.php -------------------------------------------------------------------------------- /src/UrlShortener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/UrlShortener.php -------------------------------------------------------------------------------- /src/UrlShortenerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/src/UrlShortenerServiceProvider.php -------------------------------------------------------------------------------- /tests/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/tests/FactoryTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/UrlShortenerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Waavi/url-shortener/HEAD/tests/UrlShortenerTest.php --------------------------------------------------------------------------------