cyberspectrum/api-platform-toolkit-bundle
Symfony bundle adding API Platform toolkit features: enable custom ExpressionLanguage providers via tagged services, and optional LexikJWT helpers including Swagger/OpenAPI login endpoint docs and configurable default token TTL and login URL.
composer require cyberspectrum/api-platform-toolkit-bundle
api_platform_toolkit:
# Enable custom expression language providers
enable_expression_language: true
# Enable JWT handling - this can be disabled.
lexik_jwt:
# Enable documentation handling (adds the login endpoint to swagger docs).
add_documentation: true
# The default ttl if not specified in request (defaults to 3600)
default_ttl: 3600
# The login url.
login_url: '/api/login_check'
This bundle supports to add tagged services to the api platform expression language.
To add your own ExpressionFunctionProviderInterface implementor use this
service registration:
App\ExpressionLanguage\SomeExpressionLanguageProvider:
tags:
- { name: csap_toolkit.security.expression_language }
api-platform/core.How can I help you explore Laravel packages today?