Download the PHP package surt/granada without Composer

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

Granada

Latest Stable Version Build Status deprecated

[DEPRECATED] This package is deprecated in favor of https://github.com/GranadaORM/Granada https://packagist.org/packages/granadaorm/granada

Description

Granada is a easy to use Active Record implementation based on Idiorm/Paris with eager loading, lazy loading, query filters, mutators, etc.

A quick view:

You can read the Paris Docs on paris.readthedocs.org but be sure to read the additions below.

Install

Using composer:

Configure it:

As always, you can check it in detail on Paris documentation

Aditions

Eager loading

You can use the "with" method to add relationships eager loading to the query.

will use 3 querys to fetch the users and the relationships:

It is possible to get the relationships results for each result, this way


Lazy loading

Triying to access to a not fetched relationship will call and return it

Notice that if there is no result for avatar on the above example it will throw a Notice: Trying to get property of non-object... Note: Maybe worth the effort to create a NULL object for this use case and others.


Chained relationships with arguments for eager loading!

It is possible to chain relationships and add arguments to the relationships calls


Custom query filters

It's possible to create static functions on the model to work as filter in queries. Prepended it with "filter_":

and call it on a static call


Multiple additions names for Granada


Overload SET


Overload GET and MISSING property

Of course, you still can define functions with the property name if you want to overload it completely.


Define resultSet (collection type) class on Model

Now is possible to define the resultSet class returned for a model instances result. (if return_result_sets config variable is set to true) Notice that the resultSet class defined must extends Granada\ResultSet and must be loaded

ResultSets are defined by the model in the result, as you can see above. On eager load, the results are consistent. For example, if we have a Content model, with $resultSetClass = 'TreeResultSet' and a has_many relationship defined as media:

will return a TreeResultSet with instances of Content each with a property $media containing Granada\ResultSet (the default resultSet if none if defined on the Model)


Basic Documentation comes from Paris:

Paris

Feature complete

Paris is now considered to be feature complete as of version 1.4.0. Whilst it will continue to be maintained with bug fixes there will be no further new features added.

A lightweight Active Record implementation for PHP5.

Built on top of Idiorm.

Tested on PHP 5.2.0+ - may work on earlier versions with PDO and the correct database drivers.

Released under a BSD license.

Features


All versions of granada with dependencies

PHP Build Version
Package Version
Requires php Version >=5.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 surt/granada contains the following files

Loading the files please wait ....