Download the PHP package barnetik/doctrine-auth-provider without Composer

On this page you can find all versions of the php package barnetik/doctrine-auth-provider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package doctrine-auth-provider

Authentication Adapter For Laravel 5 Using Doctrine Models

This package allows a Doctrine model based authentication for Laravel 5. Tries to avoid multiple ways to access database for projects using laravel-doctrine package.

Installation

Configure laravel-doctrine package with DriverChain driver.

Require barnetik/doctrine-auth-provider in composer.json and run composer update.

{
    "require": {
        "laravel/framework": "5.0.*",
        ...
        "barnetik/doctrine-auth-provider": "*"
    }
    ...
}

Composer will download the package. After the package is downloaded, open config/app.php and add the service provider:

'providers' => array(
    ...
    'Barnetik\DoctrineAuth\DoctrineAuthServiceProvider',
),

Usage

User model definition

Copy the base model to your models path using this command:

Take care about the PATH, the command will use de app_path() as base path.

Table creation

Once the Model is in its place, create the table in the DB.

Generate a migration diff :

Check the generated file and if everything is ok, do the migration:

Configuration

Open config/auth.php and set appropiate driver and model:

[
    ...
    'driver' => 'doctrine',
    'model' => 'My\Models\Path\User',
    ...
]

Use authentication as explained on Laravel's Authentication chapter.

If desired, generate user with provided command:

License

The Laravel framework is open-sourced software license under the MIT license

This project is too to ensure maximum compatibility.


All versions of doctrine-auth-provider with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version 5.*
atrauzzi/laravel-doctrine Version dev-master
jms/serializer Version 1.*@dev
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package barnetik/doctrine-auth-provider contains the following files

Loading the files please wait ....