sebastiandedeyne / laravel-doctrine by sebastiandedeyne

Doctrine implementation in laravel 5
15
0
3
Package Data
Maintainer Username: sebastiandedeyne
Maintainer Contact: hello@sebastiandedeyne.com (Sebastian De Deyne)
Package Create Date: 2015-04-21
Package Last Update: 2015-04-22
Language: PHP
License: MIT
Last Refreshed: 2024-03-23 15:00:56
Package Statistics
Total Downloads: 15
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Laravel Doctrine

Doctrine implementation in laravel 5. Work in progress.

Installation

composer require sebdd/laravel-doctrine

Usage

All you need to do is register the service provider in config/app.php

'providers' => [
    // ...
    'Sebdd\LaravelDoctrine\DoctrineServiceProvider',
];

You can also optionally publish the configuration

php artisan vendor:publish --provider="Sebdd\LaravelDoctrine\DoctrineServiceProvider"

If you're using the user provider, you'll also need to make sure auth.driver is set to "doctrine" and auth.model is correct.

Features

  • [x] Entity Manager
  • [x] Console commands
  • [x] User provider
  • [x] Basic configuration
  • [ ] Test coverage

Configuration

user_provider

enabled bool (true) Registers a doctrine user provider

columns.identifier string ('id') The user identifier column

columns.remember_token string ('remember_token') The user remember_token column