├── .github └── workflows │ └── tests.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── cuttly.php ├── phpunit.xml └── src ├── Cuttly.php ├── CuttlyApiWrapper.php ├── CuttlyServiceProvider.php ├── Exceptions └── MissingApiKey.php ├── Facades └── Cuttly.php └── HttpResponse.php /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/composer.json -------------------------------------------------------------------------------- /config/cuttly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/config/cuttly.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Cuttly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/Cuttly.php -------------------------------------------------------------------------------- /src/CuttlyApiWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/CuttlyApiWrapper.php -------------------------------------------------------------------------------- /src/CuttlyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/CuttlyServiceProvider.php -------------------------------------------------------------------------------- /src/Exceptions/MissingApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/Exceptions/MissingApiKey.php -------------------------------------------------------------------------------- /src/Facades/Cuttly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/Facades/Cuttly.php -------------------------------------------------------------------------------- /src/HttpResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selviler/laravel-url-shortener/HEAD/src/HttpResponse.php --------------------------------------------------------------------------------