smichaelsen/phpframework

A lightweight but powerful PHP framework

1.4.1 2015-02-24 08:43 UTC

README

This framework is a fork of Luzifer's PHPFramework.
Since the fork wide parts of the system were rewritten or heavily modified. Here's a (not neccessarily complete) overview of the difference to the original PHPFramework:

  • PHP namespaces for PSR-4 autoloading (the former autoloader has been removed)
  • Built as composer package.
  • New static classes to access the configuration and database connection everywhere
  • Cache built upon Nette Caching
  • Support for Domain Driven Design, including Domain Model Objects, Repositories, Collections and an ORM mechanism.

The fork is not compatible to the original framework and not compatible to its own previous versions. After the next major release (2.0) we'll switch to a more backwards compatible development.

Requirements

Successfully tested with

  • Debian / Ubuntu Linux
  • PHP from 5.4.0 up to 5.6.2
  • Apache or nginx
  • MySQL 5.6

Setup

The PHPFramework is designed to work with composer.

Your project composer.json file might look like this:

{
  "name": "vendor/myproject",
  "require": {
    "app-zap/phpframework": "dev-develop"
  },
  "autoload": {
    "psr-4": {
      "Vendor\\MyProject\\": "app/Classes/"
    }
  }
}
  1. Set up your project with $ composer update
  2. create an app sub directory for your application
  3. Copy the index.php.example from the PHPFramework folder (should be vendor/app-zap/phpframework) to your root level as index.php.

Inside your app directory use this structure:

  • Classes/ - Starting point for your PSR-4 autoloadable classes
  • templates/ - Your twig templates
  • routes.php - Returns an array with regular expression routes mapping to controller class names

Start with the following .gitignore file:

vendor/
settings_local.ini

Build Status SensioLabsInsight