├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── CalliostroSpotifyWebApiBundle.php ├── DependencyInjection │ ├── CalliostroSpotifyWebApiExtension.php │ └── Configuration.php ├── Resources │ └── config │ │ └── services.xml ├── SpotifyWebApiFactory.php ├── TokenProvider.php └── TokenProviderInterface.php └── tests └── FunctionalTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CalliostroSpotifyWebApiBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/CalliostroSpotifyWebApiBundle.php -------------------------------------------------------------------------------- /src/DependencyInjection/CalliostroSpotifyWebApiExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/DependencyInjection/CalliostroSpotifyWebApiExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /src/SpotifyWebApiFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/SpotifyWebApiFactory.php -------------------------------------------------------------------------------- /src/TokenProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/TokenProvider.php -------------------------------------------------------------------------------- /src/TokenProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/src/TokenProviderInterface.php -------------------------------------------------------------------------------- /tests/FunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calliostro/spotify-web-api-bundle/HEAD/tests/FunctionalTest.php --------------------------------------------------------------------------------