{ "manifests": { "friendsofsymfony/oauth-server-bundle": { "manifest": { "bundles": { "FOS\\OAuthServerBundle\\FOSOAuthServerBundle": [ "all" ] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "src/": "%SRC_DIR%/" } }, "files": { "config/packages/fos_oauth_server.yaml": { "contents": [ "# Read the documentation: https://github.com/FriendsOfSymfony/FOSOAuthServerBundle/blob/master/Resources/doc/index.md#step-5-configure-fosoauthserverbundle", "fos_oauth_server:", " db_driver: orm", "", " client_class: App\\Entity\\Client", " access_token_class: App\\Entity\\AccessToken", " refresh_token_class: App\\Entity\\RefreshToken", " auth_code_class: App\\Entity\\AuthCode", "" ], "executable": false }, "config/routes/fos_oauth_server.yaml": { "contents": [ "fos_oauth_server_token:", " resource: \"@FOSOAuthServerBundle/Resources/config/routing/token.xml\"", "", "fos_oauth_server_authorize:", " resource: \"@FOSOAuthServerBundle/Resources/config/routing/authorize.xml\"", "" ], "executable": false }, "src/Entity/AccessToken.php": { "contents": [ "