PHPackages                             aist/zendframework-application - 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. aist/zendframework-application

ActiveLibrary[Framework](/categories/framework)

aist/zendframework-application
==============================

Zend Framework Application

020PHP

Since May 18Pushed 9y ago1 watchersCompare

[ Source](https://github.com/ma-si/zendframework-application)[ Packagist](https://packagist.org/packages/aist/zendframework-application)[ RSS](/packages/aist-zendframework-application/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Aist ZF2 Application [![SensioLabsInsight](https://camo.githubusercontent.com/ad90e320aefe07a30a270fb45a152e714504ee0904670bcb8b9bec6f09604e0d/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f38383365333830322d663663382d343636322d616233612d3233623433346138633638622f736d616c6c2e706e67)](https://insight.sensiolabs.com/projects/883e3802-f6c8-4662-ab3a-23b434a8c68b)
===========================================================================================================================================================================================================================================================================================================================================================================================================

[](#aist-zf2-application-)

[![Build Status](https://camo.githubusercontent.com/2b030c504b4551277ceb2803b43443d3e583cd8a5b25f4a43e38aa520dd396eb/68747470733a2f2f7472617669732d63692e6f72672f6d612d73692f7a656e646672616d65776f726b2d6170706c69636174696f6e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/ma-si/zendframework-application)![Packagist](https://camo.githubusercontent.com/f4ecfdfea3ae097f5b24d4881dff5351340f43a7397a9578eea291d508794cbb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616973742f7a656e646672616d65776f726b2d6170706c69636174696f6e2e737667)[![Code Climate](https://camo.githubusercontent.com/f6d6e251d20aef42a20bee363d4bee0d35e150edcb572456f0bebaa590ad8138/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6d612d73692f7a656e646672616d65776f726b2d6170706c69636174696f6e2f6261646765732f6770612e737667)](https://codeclimate.com/github/ma-si/aist-insight)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/eba2005d4dfdc34694144624370156cfd908fde0bb7019633f7b2fd764ccbf48/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d612d73692f7a656e646672616d65776f726b2d6170706c69636174696f6e2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/ma-si/zendframework-application/?branch=master)[![License](https://camo.githubusercontent.com/e7c3bd13a7e558c7ada17dddc745ae929a47d689c89ca68807017bdd9881b270/68747470733a2f2f706f7365722e707567782e6f72672f616973742f7a656e646672616d65776f726b2d6170706c69636174696f6e2f6c6963656e7365)](https://packagist.org/packages/aist/zendframework-application)

Introduction
------------

[](#introduction)

This is a simple, skeleton application using the ZF2 MVC layer and module systems. This application is meant to be used as a starting place for those looking to get their feet wet with ZF2.

Installation using Composer
---------------------------

[](#installation-using-composer)

The easiest way to create a new ZF2 project is to use [Composer](https://getcomposer.org/). If you don't have it already installed, then please install as per the [documentation](https://getcomposer.org/doc/00-intro.md). Create your new ZF2 project:

```
composer create-project -n -sdev aist/zendframework-application path/to/install
```

### Installation using a tarball with a local Composer

[](#installation-using-a-tarball-with-a-local-composer)

If you don't have composer installed globally then another way to create a new ZF2 project is to download the tarball and install it:

1. Download the [tarball](https://github.com/ma-si/zendframework-application/tarball/master), extract it and then install the dependencies with a locally installed Composer:

```
cd my/project/dir
curl -#L https://github.com/zendframework/ZendSkeletonApplication/tarball/master | tar xz --strip-components=1
```

2. Download composer into your project directory and install the dependencies: ```
    curl -s https://getcomposer.org/installer | php
    php composer.phar install
    ```

If you don't have access to curl, then install Composer into your project as per the [documentation](https://getcomposer.org/doc/00-intro.md).

Web server setup
----------------

[](#web-server-setup)

### PHP CLI server

[](#php-cli-server)

The simplest way to get started if you are using PHP 5.4 or above is to start the internal PHP cli-server in the root directory:

```
php -S 0.0.0.0:8080 -t public/ public/index.php
```

This will start the cli-server on port 8080, and bind it to all network interfaces. **Note:** The built-in CLI server is *for development only*.

### Vagrant server

[](#vagrant-server)

This project supports a basic [Vagrant](http://docs.vagrantup.com/v2/getting-started/index.html)configuration with an inline shell provisioner to run the Skeleton Application in a [VirtualBox](https://www.virtualbox.org/wiki/Downloads).

1. Run vagrant up command ```
    vagrant up
    ```
2. Visit  in your browser

Look in [Vagrantfile](Vagrantfile) for configuration details.

### Apache setup

[](#apache-setup)

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:

```

    ServerName zf2-app.dev
    DocumentRoot /path/to/aist-zendframework-application/public

    ErrorLog /var/www/aist-zendframework-application/data/logs/error.log
    CustomLog /var/www/aist-zendframework-application/data/logs/access.log combined

        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all

        Require all granted

```

### Nginx setup

[](#nginx-setup)

To setup nginx, open your `/path/to/nginx/nginx.conf` and add an [include directive](http://nginx.org/en/docs/ngx_core_module.html#include) below into `http` block if it does not already exist:

```
http {
    # ...
    include sites-enabled/*.conf;
}

```

Create a virtual host configuration file for your project under `/path/to/nginx/sites-enabled/zf2-app.localhost.conf`it should look something like below:

```
server {
    listen       80;
    server_name  zf2-app.localhost;
    root         /path/to/zf2-app/public;

    location / {
        index index.php;
        try_files $uri $uri/ @php;
    }

    location @php {
        # Pass the PHP requests to FastCGI server (php-fpm) on 127.0.0.1:9000
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME /path/to/zf2-app/public/index.php;
        include fastcgi_params;
    }
}

```

Restart the nginx, now you should be ready to go!

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/42b693076307a5fa17b0df69ee058c3f95482bd01e93f3d17a27137d6fdf1c17?d=identicon)[aist](/maintainers/aist)

---

Top Contributors

[![ma-si](https://avatars.githubusercontent.com/u/1869327?v=4)](https://github.com/ma-si "ma-si (6 commits)")

### Embed Badge

![Health badge](/badges/aist-zendframework-application/health.svg)

```
[![Health](https://phpackages.com/badges/aist-zendframework-application/health.svg)](https://phpackages.com/packages/aist-zendframework-application)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
