├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── php-cs-fixer.yml │ └── php.yml ├── .php-cs-fixer.cache ├── .php_cs.dist.php ├── LICENSE ├── README.md ├── composer.json ├── src ├── Exceptions │ ├── InvalidConfiguration.php │ └── WeatherException.php ├── Weather.php ├── WeatherClient.php ├── WeatherFormat.php ├── WeatherServiceProvider.php └── config │ └── openweather.php └── tests ├── CreatesApplication.php ├── Feature └── WeatherTest.php ├── TestCase.php └── Unit └── ExampleTest.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/php-cs-fixer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/.github/workflows/php-cs-fixer.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.php-cs-fixer.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/.php-cs-fixer.cache -------------------------------------------------------------------------------- /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/composer.json -------------------------------------------------------------------------------- /src/Exceptions/InvalidConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/Exceptions/InvalidConfiguration.php -------------------------------------------------------------------------------- /src/Exceptions/WeatherException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/Exceptions/WeatherException.php -------------------------------------------------------------------------------- /src/Weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/Weather.php -------------------------------------------------------------------------------- /src/WeatherClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/WeatherClient.php -------------------------------------------------------------------------------- /src/WeatherFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/WeatherFormat.php -------------------------------------------------------------------------------- /src/WeatherServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/WeatherServiceProvider.php -------------------------------------------------------------------------------- /src/config/openweather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/src/config/openweather.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/WeatherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/tests/Feature/WeatherTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakibdevs/openweather-laravel-api/HEAD/tests/Unit/ExampleTest.php --------------------------------------------------------------------------------