2017 © Pedro Peláez
 

library phly-peep

Rudimentary twitter clone to demonstrate ZF2 modules

image

phly/phly-peep

Rudimentary twitter clone to demonstrate ZF2 modules

  • Tuesday, September 18, 2012
  • by weierophinney
  • Repository
  • 5 Watchers
  • 25 Stars
  • 45 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

This is a sample module for the DPC 12 Zend Framework 2 workshop on building re-usable modules. The goals are:, (*1)

  • Demonstrate some principles to follow when writing modules
  • Demonstrate a number of components, including the ServiceManager, InputFilter, Form, MVC, and Db.

This will not and should not be considered a fully-functional, full-featured module, though the basic functionality should work., (*2)

Dependencies

  • PHP >= 5.3.3
  • Zend Framework (current master)
  • ZfcUser (current master)

Installation

Via Composer:

Update your composer.json, (*3)

{
    "require": {
        /* ... */
        "phly/phly-peep": "dev-master"
    }
}

and then run:, (*4)

php composer.phar install

As a submodule:

git submodule add git://github.com/weierophinney/PhlyPeep.git vendor/PhlyPeep

All:

After installation, update your config/application.config.php to add "PhlyPeep" as a module., (*5)

Database Setup

Currently, PhlyPeep only ships with a schema for SQLite. You can import it using the following:, (*6)

$> sqlite3 path/to/database < path/to/phly-peep/data/schema.sqlite.sql

The Versions

18/09 2012

dev-master

9999999-dev https://github.com/weierophinney/PhlyPeep

Rudimentary twitter clone to demonstrate ZF2 modules

  Sources   Download

The Requires

 

zf2 zend module