tagwalk / api-client-bundle
This package is abandoned and no longer maintained.
No replacement package was suggested.
Tagwalk API client (symfony bundle)
Package info
github.com/tag-walk/tagwalk-api-client
Type:symfony-bundle
pkg:composer/tagwalk/api-client-bundle
1.19.18
2021-04-13 15:31 UTC
Requires
- php: >=7.4
- ext-curl: *
- ext-json: *
- guzzlehttp/guzzle: ^6.3
- kevinrob/guzzle-cache-middleware: ^3.2
- psr/cache: ^1.0
- symfony/asset: ^4.2 || ^5.0
- symfony/cache: ^4.2 || ^5.0
- symfony/form: ^4.2 || ^5.0
- symfony/framework-bundle: ^4.2 || ^5.0
- symfony/property-info: ^4.2 || ^5.0
- symfony/routing: ^4.2 || ^5.0
- symfony/security-bundle: ^4.2 || ^5.0
- symfony/serializer: ^4.2 || ^5.0
- symfony/string: ^5.2
- symfony/translation: ^4.2 || ^5.0
- symfony/validator: ^4.2 || ^5.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- phpstan/phpstan: ^0.12.63
- phpstan/phpstan-phpunit: ^0.12.17
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2021-05-14 18:31:32 UTC
README
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