vanio/vanio-api-bundle

Symfony2 Bundle providing some additional features for API development

Installs: 4 008

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 1

Open Issues: 3

Type:symfony-bundle

dev-master / 0.1.x-dev 2020-09-06 16:03 UTC

README

Build Status PHP7.2 License

A Symfony3 Bundle providing some additional features for API development.

Installation

Installation can be done as usually using composer. composer require vanio/vanio-api-bundle

Next step is to register this bundle inside your AppKernel.

// app/AppKernel.php
// ...

class AppKernel extends Kernel
{
    // ...

    public function registerBundles(): array
    {
        $bundles = [
            // ...
            new Vanio\ApiBundle\VanioApiBundle,
        ];

        // ...
    }
}