helgart/rest-bundle

Fast REST API implementation for symfony 2 / 3

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master / 0.1.x-dev 2016-07-19 09:14 UTC

This package is not auto-updated.

Last update: 2024-04-22 05:24:15 UTC


README

Fast REST API implementation for symfony 2 / 3.

Why another RESTBundle for Symfony ?

Simply because when you want to make a REST API with Symfony you have to either :

  • Use a boilerplate already configured with a lot of modification.
  • Use a set of bundle and spend a lot of time configuring and mastering all of these.

This bundle is here to offer another solution, an already configured set of bundle. You use your platform with your configuration and add an already working API part. It's up to you then to change all the configurations you want.

How to install ?

Install FriendsOfSymfony RESTBundle

composer require friendsofsymfony/rest-bundle '^2.0'

And add it to your app/AppKernel.php :

    <?php
    $bundles = [
        ...
        new FOS\RestBundle\FOSRestBundle(),
    ]

Install Nelmio CORSBundle

composer require friendsofsymfony/rest-bundle '^1.4'

And add it to your app/AppKernel.php :

    <?php
    $bundles = [
        ...
        new Nelmio\CorsBundle\NelmioCorsBundle(),
    ]

Install this bundle

composer require helgart/rest-bundle '^0.1'

And add it to your app/AppKernel.php :

    <?php
    $bundles = [
        ...
        new helgart\RESTBundle\helgartRESTBundle(),
    ]

And that's all ... All configurations are done for you.

If you want to know more about default behavior, or change it, please refer to documentation bellow :