PHPackages                             ontic/zend-module-base - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. ontic/zend-module-base

ActiveLibrary[Framework](/categories/framework)

ontic/zend-module-base
======================

This module provides a base set of classes which other modules can share and inherit.

v1.0.0(10y ago)016BSD-3-ClausePHPPHP &gt;=5.5

Since Dec 9Pushed 10y ago1 watchersCompare

[ Source](https://github.com/ontic/zend-module-base)[ Packagist](https://packagist.org/packages/ontic/zend-module-base)[ Docs](https://github.com/ontic/zend-module-base)[ RSS](/packages/ontic-zend-module-base/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (11)Versions (3)Used By (0)

Ontic Base [![Status](https://camo.githubusercontent.com/656a2558d935a0af20068c4d0432213c6434f617cb10a2b42cc1e606085d5ece/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f70726f6a6563742d6d61696e7461696e65642d627269676874677265656e2e737667)](https://camo.githubusercontent.com/656a2558d935a0af20068c4d0432213c6434f617cb10a2b42cc1e606085d5ece/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f70726f6a6563742d6d61696e7461696e65642d627269676874677265656e2e737667)
==============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#ontic-base-)

BranchBuildCoverageRelease**master**[![Build](https://camo.githubusercontent.com/c38333257e11ece2573540ccfc2dd37aae126eeb9032bcd4469e232d72186441/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6f6e7469632f7a656e642d6d6f64756c652d626173652f6d61737465722e737667)](https://travis-ci.org/ontic/zend-module-base)[![Coverage](https://camo.githubusercontent.com/daa38717455737a4533959f7df99f3ae798235577d0ca746a6457ff0f4009d25/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6f6e7469632f7a656e642d6d6f64756c652d626173652f6d61737465722e737667)](https://coveralls.io/r/ontic/zend-module-base?branch=master)[![Release](https://camo.githubusercontent.com/0ce110ccb5dd875bd0384e4643be79389ddf3bb0999a398509b59544eec23059/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f6e7469632f7a656e642d6d6f64756c652d626173652e737667)](https://packagist.org/packages/ontic/zend-module-base)**develop**[![Build](https://camo.githubusercontent.com/e83c296d25e6382997756da15768610bc2a7943f9546af6bfe1eb19645d51183/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6f6e7469632f7a656e642d6d6f64756c652d626173652f646576656c6f702e737667)](https://travis-ci.org/ontic/zend-module-base)[![Coverage](https://camo.githubusercontent.com/789fc86e6398aa316f56861fec58ed06f47e266e9f682a49fe7cae51f9eae3d1/68747470733a2f2f696d672e736869656c64732e696f2f636f766572616c6c732f6f6e7469632f7a656e642d6d6f64756c652d626173652f646576656c6f702e737667)](https://coveralls.io/r/ontic/zend-module-base?branch=develop)[![Release](https://camo.githubusercontent.com/83e9e8cc637e7ac03fcc9e993ff28086ea2bb349b8aa7fc7862e6a76aee5dc76/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f6f6e7469632f7a656e642d6d6f64756c652d626173652e737667)](https://packagist.org/packages/ontic/zend-module-base)Introduction
------------

[](#introduction)

This module provides a base set of classes which other modules can share and inherit.

Requirements
------------

[](#requirements)

NameVersion[PHP](https://www.php.net/)`>=5.5`[Zend Framework 2](https://github.com/zendframework/zf2)`~2.5`Installation
------------

[](#installation)

We strongly suggest installing this module using [Composer](https://getcomposer.org) so that any dependencies will get resolved and downloaded automatically. However, we've listed a few other alternatives.

### 1.1 Downloading

[](#11-downloading)

Download the project files as a `.zip` archive, extracting them into your `./vendor/` directory.

### 1.2 Cloning

[](#12-cloning)

Clone the project it into your `./vendor/` directory.

### 1.3 Composer

[](#13-composer)

The easiest way to install this module is via the command line:

```
$ composer require ontic/zend-module-base:~1.0

```

Or you could manually add this module in your `composer.json` file:

```
{
	...
	"require":
	{
		...
		"ontic/zend-module-base": "~1.0"
	}
}
```

Alternatively you could download the source by adding a repository to your `composer.json` file:

```
{
	...
	"repositories": [
		{
			"type": "vcs",
			"url": "git@github.com:ontic/zend-module-base.git"
		}
	],
	"require":
	{
		...
		"ontic/zend-module-base": "~1.0"
	}
}
```

To download this module and its dependencies, run the command:

```
$ composer update

```

### 2.1 Enabling

[](#21-enabling)

Enable the module and dependencies in your `application.config.php` file.

```
