Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 757 Bytes

readme.md

File metadata and controls

37 lines (28 loc) · 757 Bytes

GAR API Bundle

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