Download the PHP package modul-is/orm without Composer

On this page you can find all versions of the php package modul-is/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

badge-version badge-licence badge-stars badge-issues

Licence

This repository is an overhaul of YetORM under MIT licence. Original fork kravcik/core will not be maintained for Nette3. You can find the unfinished PR for YetORM and Nette 3 here.

Abstract

This is a hybrid of a simple scalable database layer with ORM principles.

For usage and examples refer to quickstart.

Readonly

The ReadonlyProperty attribute can be used for properties that should not be written into, for example columns with auto increment.

Special types & behavior

Input Entity Nullable Output
int(1) int ✓ || ✗ int(1)
int(0) int ✓ || ✗ int(0)
string("0") int ✓ || ✗ Exception
float(1.0) float ✓ || ✗ float(1.0)
float(0.0) float ✓ || ✗ float(0.0)
string("0.0") float ✓ || ✗ Exception
string("a") string ✓ || ✗ string("a")
string("") string ✓ || ✗ string("")
array(["a" => "b"]) array ✓ || ✗ string("{"a":"b"}")
array([]) array ✓ || ✗ string("[]")
string("{"a":"b"}") array ✓ || ✗ Exception
string("[]") array ✓ || ✗ Exception
bool(false) bool ✓ || ✗ bool(false)
string("false") bool ✓ || ✗ Exception
DateTime("2021-01-01 12:34:56") DateTime ✓ || ✗ string("2021-01-01 12:34:56")
string("2021-01-01 12:34:56") DateTime ✓ || ✗ Exception
int(0) float || string || array || bool || DateTime ✓ || ✗ Exception
float(0.0) int || string || array || bool || DateTime ✓ || ✗ Exception
string("") int || float || array || bool || DateTime ✓ || ✗ Exception
array([]) int || float || string || bool || DateTime ✓ || ✗ Exception
bool(false) int || float || string || array || DateTime ✓ || ✗ Exception
null int || float || string || array || bool || DateTime null
null int || float || string || array || bool || DateTime Exception

Custom types

You can also use custom types, you just have to create a class that extends \ModulIS\Datatype\Datatype and implements both of its static functions: 1) input(string $name, $value) - save logic (conversion into a database-compatible type) 2) output($value) - read logic (conversion back into the original type)

Then you can use your type with a property just like all the usual types.

Just make sure the data is always wrapped in the specified class to avoid errors.


All versions of orm with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
nette/utils Version ^4.0
nette/database Version ^3.0 || ^4.0
nette/bootstrap Version ^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 modul-is/orm contains the following files

Loading the files please wait ....