Download the PHP package simple-as-fuck/orm without Composer

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

Simple as fuck / orm

Orm layer easy to use with customizable class generation.

Installation

Usage generator with mysql as composer command

Add configurations into your composer.json extra (https://getcomposer.org/doc/04-schema.md#extra).

All configuration keys are commented in Defaults\Config and can be change in composer extra.

Add commands into your composer.json scripts (https://getcomposer.org/doc/articles/scripts.md#writing-custom-commands).

After prepared composer you can run commands:

Command generate for all database tables with primary key Model and Repository classes. By default, models are in App\Model\Database and repository in App\Service\Database namespace.

If you add all generated classes into repository, you can check generated content if is up-to-date with database structure.

Is recommended avoid adding generated code in repository and run orm generation like this for production deploy after composer install. --no-dev option in default class templates remove some comments from generated code and some additional checks with exception, this can make orm gently faster.

-- --i-am-not-stupid and --no-dev are synonyms because if you write production deploy script, is good to know what you doing and not be stupid :-).

Usage default generated classes

Nice after successful class generation with default templates, you can write code like this.

Customization

Usage generator with mysql as php class

If you want write in application your command for class generation, mainly for configuration sharing with generator and app, use class \SimpleAsFuck\Orm\Generator\Generator.

Usage generator with different database type

Generator can create classes from various sources, because use abstract SimpleAsFuck\Orm\Generator\Abstracts\StructureLoader. You can load models structure from any source and create any classes.


All versions of orm with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
ext-pdo Version *
league/flysystem Version ^2.0|^3.0
composer/composer Version ^2
simple-as-fuck/php-validator Version ^0.1.0|^0.2.0|^0.3.0
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 simple-as-fuck/orm contains the following files

Loading the files please wait ....