Ingen beskrivning

Luciano Andrade 1ce5ec22c5 Deprecated: Non-static method AuthBundle\Utils\IpUtils::checkIp() should not be called statically 7 år sedan
DependencyInjection 271d2bb7e6 Custom Authentication provider 7 år sedan
Resources 271d2bb7e6 Custom Authentication provider 7 år sedan
Security 1ce5ec22c5 Deprecated: Non-static method AuthBundle\Utils\IpUtils::checkIp() should not be called statically 7 år sedan
Services 56942a8392 OAuthProxyListener 7 år sedan
Utils 56942a8392 OAuthProxyListener 7 år sedan
AuthBundle.php 271d2bb7e6 Custom Authentication provider 7 år sedan
README.md 6f012cdf5d Commit inicial 7 år sedan
composer.json 6f012cdf5d Commit inicial 7 år sedan

README.md

AuthBundle

Installation

composer.json:

"repositories": [
    {
        "type": "vcs",
        "url":  "ssh://git@200.50.168.30:222/VendorSoftwareFlowdat3/AuthBundle.git"
    }
],
"require": {
    "ik/auth-bundle": "dev-master"
},

app/AppKernel.php:

public function registerBundles()
{
    $bundles = [
        new AuthBundle\AuthBundle(),
    ];
    .
    .
}

app/config/config.yml:

imports:
    - { resource: "@AuthBundle/Resources/config/services.yml" }