Download the PHP package dweineratl/laravel-model-abstraction-helper without Composer

On this page you can find all versions of the php package dweineratl/laravel-model-abstraction-helper. 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 laravel-model-abstraction-helper

Laravel Model Abstraction Helper

Why go to all this effort?

I'm trying to backfill tests in my Laravel project, and I really wanted to use Laravel Test Factory Generator to generate factories for the tests. But I had a problem -- I used Jens Segers' Laravel MongoDB Eloquent extension for Laravel.

Due to the nature of how MongoDB works, it doesn't have a Doctrine Driver. So I couldn't use it. Or could I? I have been adding full PHP DocBlocks to my models, using @property to help with hinting and variable completion in my IDE.

I was discussing this approach with Jason McCreary because he was the one that pointed me towards Laravel Test Factory Generator. He suggested abstracting it out into a factory that could use Doctrine, DocBlocks, custom drivers and ultimately, fallback to using the $fillable array that should be present in a Laravel Model, and Laravel Model Abstraction Helper was born.

Install

Require this package with composer using the following command:

How to use

For example, Laravel Test Factory Generator uses this code snippet to get the column names and types for a Model:

It can be refactored to

Drivers

Laravel Model Abstraction Helper uses the concept of "drivers" to handle different types of models. Laravel Model Abstraction Helper ships with three drivers. The ModelAbstractionFactory will detect which driver to use

Class Methods

ModelAbstractionFactory

The ModelAbstractionFactory has two public static methods:

DriverInterface

Every driver implements the Dweineratl\LaravelModelHelper\DriverInterface which only has a single method

Column

Custom Drivers

To support other methods of obtaining the columns for a model, Laravel Model Abstraction Helper supports drivers that are in the Dweineratl\LaravelModelHelper\Driver namespace, and the class name is value of config('database.default') concated with 'Driver' and in PascalCase (i.e, Dweineratl\LaravelModelHelper\Driver\CouchdbDriver). It must implement the Dweineratl\LaravelModelHelper\DriverInterface at a minimum, providing the getColumns() method that returns an array of Dweineratl\LaravelModelHelper\Column objects. ModelAbstractionFactory will first check if the model supports Doctrine. If it does not support Doctrine, it will then get the value of the default database driver using config('database.default') and check if a custom driver for that database exists. If it does not, it will then check to see if the model has a suitable DocBlock. Finally, if none of the previous drivers are usable, the default fallback of using the $fillable array will be used.

License

The Laravel Model Abstraction Helper is free software licensed under the MIT license.


All versions of laravel-model-abstraction-helper with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
doctrine/dbal Version ~2.3
phpdocumentor/reflection-docblock Version ^4.3
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 dweineratl/laravel-model-abstraction-helper contains the following files

Loading the files please wait ....