tagwalk/api-client-bundle

Tagwalk API client (symfony bundle)


Keywords
tagwalk, tagwalk-api, tagwalk-api-client, api-client, symfony-bundle
License
Other

Documentation

Tagwalk API Client Bundle

Build Status codecov styleci

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require tagwalk/tagwalk-api-client

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the config/bundles.php file of your project:

<?php
// config/bundles.php
return [
    // ...
    Tagwalk\ApiClientBundle\TagwalkApiClientBundle::class => ['all' => true]
];

Step 3: Load bundle routes (optionnal)

Edit your project file routes.yaml to include the routes from the bundle

api_client_bundle:
    resource: "@TagwalkApiClientBundle/Controller/"
    type:     annotation
    prefix:   /api

More