Download the PHP package flipbox/orm-manager without Composer

On this page you can find all versions of the php package flipbox/orm-manager. 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 orm-manager

Laravel ORM Manager

Total Downloads Latest Stable Version Latest Unstable Version License

This package is manager for laravel or lumen ORM (object relational mapping) Model. You can generate relation method and control Model development in your project. Relation method is method in Model class that reference to another Model for get data in related Model. For example you have a model User and Phone with relation one to one. Both model will be called connected if there is relation method in both class. In class User.php there should be

In class Phone.php

When you are working with very large projects, you might feel more difficult to connect all models in your project. This package can be auto generate all relation method of your project's model, even relation method that you don't need right now. And with this package we hope development relation method of Models faster and easier.

Install

require with composer:

Add service provider for Laravel in the file config/app.php

Add service provider for Lumen in the file bootstrap/app.php

Features

See php artisan in console, if you install this package correctly you will see list of features with prefix orm:

Control ORM Model

List of Model

Type php artisan orm:list in console, that will show you list of your project model and its properties. for example: ScreenShot

Detail of Model

Type php artisan orm:detail User in console, that will show you detail of selected Model. for example: ScreenShot

Generate Relation Method

How it works? Generator it first check the database connection of your project, if you has been created the database and its connected, it will check required option of relation in the database schema such as primary key, foreign key, pivot table, etc. And if you hasn't yet create database or its not connected, it will offer some required options of relation. And after required option is fulfilled it will check is method exists in the method, than will create method in the model if hasn't.

Generate relation method in single Model

It will generate method in class Model User

Generate relation method in both Model

It will generate method in class Model User and Phone

Auto Generate All Models

important *) it only work if you has been created database and project is connected.

it will search possible connection between two models or more, and generate method to each model, sometime need your approval to decide relation type.


All versions of orm-manager with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6.4
illuminate/config Version ^5.2
illuminate/console Version ^5.2
illuminate/database Version ^5.2
illuminate/support Version ^5.2
doctrine/dbal Version ^2.5
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 flipbox/orm-manager contains the following files

Loading the files please wait ....