├── .github └── workflows │ └── read-only.yml ├── Client ├── AuthenticationPlugin.php ├── CustomQueryResolver.php ├── Exception │ └── InvalidFetchModeException.php └── Plugin │ └── AuthenticationRegistry.php ├── LICENSE ├── README.md └── composer.json /.github/workflows/read-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/.github/workflows/read-only.yml -------------------------------------------------------------------------------- /Client/AuthenticationPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/Client/AuthenticationPlugin.php -------------------------------------------------------------------------------- /Client/CustomQueryResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/Client/CustomQueryResolver.php -------------------------------------------------------------------------------- /Client/Exception/InvalidFetchModeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/Client/Exception/InvalidFetchModeException.php -------------------------------------------------------------------------------- /Client/Plugin/AuthenticationRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/Client/Plugin/AuthenticationRegistry.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janephp/open-api-runtime/HEAD/composer.json --------------------------------------------------------------------------------