Skip to content
This repository has been archived by the owner on Jan 31, 2022. It is now read-only.

Commit

Permalink
fix documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Dec 16, 2013
1 parent f88fb2f commit fa519eb
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions Resources/doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,46 @@ BazingaRestExtraBundle

This bundle provides extra features for your REST APIs built using Symfony2.

Installation
------------

Require [`willdurand/rest-extra-bundle`](https://packagist.org/packages/willdurand/rest-extra-bundle)
to your `composer.json` file:


``` json
{
"require": {
"willdurand/rest-extra-bundle": "@stable"
}
}
```

**Protip:** you should browse the
[`willdurand/rest-extra-bundle`](https://packagist.org/packages/willdurand/rest-extra-bundle)
page to choose a stable version to use, avoid the `@stable` meta constraint.

Register the bundle in `app/AppKernel.php`:

``` php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Bazinga\Bundle\RestExtraBundle\BazingaRestExtraBundle(),
);
}
```

Enable the bundle's configuration in `app/config/config.yml`:

``` yaml
# app/config/config.yml
bazinga_rest_extra: ~
```


Usage
-----

Expand Down Expand Up @@ -159,46 +199,6 @@ bazinga_rest_extra:
```


Installation
------------

Require [`willdurand/rest-extra-bundle`](https://packagist.org/packages/willdurand/rest-extra-bundle)
to your `composer.json` file:


``` json
{
"require": {
"willdurand/rest-extra-bundle": "@stable"
}
}
```

**Protip:** you should browse the
[`willdurand/rest-extra-bundle`](https://packagist.org/packages/willdurand/rest-extra-bundle)
page to choose a stable version to use, avoid the `@stable` meta constraint.

Register the bundle in `app/AppKernel.php`:

``` php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Bazinga\Bundle\RestExtraBundle\BazingaRestExtraBundle(),
);
}
```

Enable the bundle's configuration in `app/config/config.yml`:

``` yaml
# app/config/config.yml
bazinga_rest_extra: ~
```


Testing
-------

Expand Down

0 comments on commit fa519eb

Please sign in to comment.