subugoe/text-api-bundle

Provides general TextAPI implementation for Symfony 6

Maintainers

Package info

github.com/subugoe/text-api-bundle

Type:symfony-bundle

pkg:composer/subugoe/text-api-bundle

Statistics

Installs: 197

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2024-06-13 12:16 UTC

This package is auto-updated.

Last update: 2026-02-13 15:46:29 UTC


README

Symfony Framework Bundle that generates TextAPI resources

Requirements

  • PHP >= 8.1
  • Composer
  • Symfony >= 6.2

Installation

  1. To add this bundle to your Symfony application please run:

    composer require @subugoe/text-api-bundle
    
  2. This bundle requires your custom Translator that communicates with your database layer to retrieve the actual data from your solution. The translator class needs to implement the TranslatorInterface.

  3. Add this configuration to your /config/services.yaml:

    myapp.translator:
        class: App\Service\[YOUR_CUSTOM_TRANSLATOR_CLASS]
    
    subugoe_text_api.text_api_service:
        class: Subugoe\TextApiBundle\Service\TextApiService
        calls:
            - setTranslator: ['@myapp.translator']
    
  4. Create a controller that fits your needs and call methods from the TextApiService. Creating routes is not in the scope of this bundle so you still keep the full control of your Responses. There is an example controller under /examples.