tagwalk/api-client-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Tagwalk API client (symfony bundle)

Installs: 2 662

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 7

Open Issues: 4

Type:symfony-bundle

1.19.18 2021-04-13 15:31 UTC

This package is auto-updated.

Last update: 2021-05-14 18:31:32 UTC


README

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