Download the PHP package azera/lab without Composer

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

Azera Lab v1.0

Author : Masoud Zohrabi ( [email protected] )

[TOC]

Case : Entity access performance

Object Creation

Test Scale Time Memory
Creation with instance 5000 0.3140869140625 112
Creation with clone 5000 0.33392000198364 112

Column read

Test Scale Time Memory
Get column by getter 10000 0.59601902961731 136
Get column dynamic 10000 0.60775804519653 280
Get column direct 10000 0.5257740020752 120
Get column array 10000 0.52228784561157 112

Column set

Test Scale Time Memory
Set column dynamicaly and validate 10000 0.90060496330261 192
Set column direct 10000 0.53503203392029 136
Set column array 10000 0.53023481369019 112
Set column by setter 10000 0.61148309707642 152
Set column by setter and validate 10000 0.85791707038879 144

Search in rows

Test Scale Time Memory
Search in entities dynamic var 1 0.094137907028198 120
Search in entities static var 1 0.018819093704224 120
Search in entities doctrine getter 1 0.07529616355896 120
Search in arrays 1 0.017956018447876 112

Result

Job Array Setter And Getter Dynamic Column Direct Column
Search ($10^4$ Rows) 0.018 0.075 (4x) 0.094 (5.25x) 0.019 (~1x)
Set Value ($10^4$ times) 0.530 0.857[^set_value] (1.61x) 0.900 (1.69x)[^set_value] 0.535 (~1x)
Get Value ($10^4$ times) 0.522 0.596 (1.14x) 0.607 (1.16x) 0.525 (~1x)

[^set_value]: Validation does while setting value.


All versions of lab with dependencies

PHP Build Version
Package Version
Requires mdzzohrabi/azera-core Version dev-master
mdzzohrabi/azera-annotation Version dev-master
symfony/yaml Version 2.*
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 azera/lab contains the following files

Loading the files please wait ....