da/auth-common-bundle

Symfony2's bundle sharing commons for DaOAuth* and DaApi* bundles

Maintainers

👁 Gnucki

Package info

github.com/Gnuckorg/DaAuthCommonBundle

Type:symfony-bundle

pkg:composer/da/auth-common-bundle

Statistics

Installs: 88 591

Dependents: 2

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2014-06-17 16:23 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 278fd8b6aaca1d2c6cfb8813f034c261368824e9

  • Thomas Prelot <tprelot.woop@gmail.com>

apioauthbundleauthcommonda

This package is auto-updated.

Last update: 2026-06-14 03:06:09 UTC


README

DaAuthCommonBundle is a Symfony2's bundle sharing commons for DaOAuth* and DaApi* bundles.

Installation

Installation is a quick 2 steps process.

Step 1: Add in composer

Add the bundle in the composer.json file:

// composer.json

"require": {
 // ...
 "da/auth-common-bundle": "dev-master"
},

And update your vendors:

composer update # WIN
composer.phar update # LINUX

Step 2: Declare in the kernel

Declare the bundle in your kernel:

// app/AppKernel.php

$bundles = array(
 // ...
 new Da\AuthCommonBundle\DaAuthCommonBundle(),
);