Download the PHP package jakolab/howl-orm without Composer

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

Howl-ORM

What is?

Howl-ORM (Object Relational Model) was built to make the data layer of your applications easy and fast. Based on the active record pattern Howl-ORM makes easy:

Also Howl-ORM allows you to filter records using clauses such as JOINS and GROUPS, the result can be ORDERED, LIMITED and COUNTED.

How to install and initialize

  1. Download Howl-ORM as a zip and extract the files into your project libraries folder.
  2. Require the HowlAutoload.php file from the Howl-ORM package.
  3. Initialize the Howl Autoload.
  4. Instance Howl Database manager.
  5. Load the Database driver.

Done, now you are connected to the database! An optional way to do exactly the same as above is:

Howl use the singleton patter to keep only one instance of the database connection, using the getInstance funciton you can get the unique instance of the Dadatabase manager en execute custom queries if you want.

Mapping your tables (Models)

To map your database tables is very easy.

  1. Create a file with name of the table into a directory named model (I recommend you to use PascalCase to name your models).
  2. The file must contains a namespace Model.
  3. The file must have a class with the same name as the file.
  4. The class must extends from Howl\Model.
  5. The class must contains a property named table and it's value must be the name of the table that it represents in database.

Model/Items.php

app/index.php

List

Update

Delete

Compare


All versions of howl-orm with dependencies

PHP Build Version
Package Version
No informations.
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 jakolab/howl-orm contains the following files

Loading the files please wait ....