edumedia/gar-api-bundle

Installs: 1 663

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

0.1.9 2024-01-10 14:03 UTC

This package is auto-updated.

Last update: 2024-05-10 14:50:34 UTC


README

A Symfony bundle to ease the interaction with the GAR API.

Installation

Add an extra Symfony endpoint to allow the execution of the recipe:

You can run the following command:

composer config --json extra.symfony.endpoint '["https://api.github.com/repos/edumedia-sciences/gar-api-bundle-recipe/contents/index.json", "flex://defaults"]' --merge

It should now look like this:

// composer.json
{
  // (...)
  "extra": {
    "symfony": {
      // (...)
      "endpoint": [
        "https://api.github.com/repos/edumedia-sciences/gar-api-bundle-recipe/contents/index.json",
        "flex://defaults"
      ]
    }
  }
}

Require the bundle using Composer:

composer require edumedia/gar-api-bundle