brian978/acamar

This package is abandoned and no longer maintained. No replacement package was suggested.

Fast PHP framework using an event-driven architecture

v2.1.0 2016-09-27 19:40 UTC

This package is auto-updated.

Last update: 2022-02-28 12:39:03 UTC


README

SensioLabsInsight

About

The Acamar framework is not intended as a full stack framework and it will never be one. The main purpose of the framework is to provide the minimum code that is required to build a web application that uses the MVC pattern (this ranges from APIs to admin back-ends).

The framework is PSR-0 / PSR-4 compliant, so you can use it in conjunction with any other library or full stack framework.

Main selling points

  • Event based architecture
  • Light and fast
  • Flexible
  • Decoupled a much as possible (the Mvc package is an exception)
  • Some features load ONLY on demand

Minimum requirements

  • PHP 5.3.29
  • Nginx / Apache web server (it's not yet tested on others)

Documentation

The documentation can be found HERE

Composer

The framework can also be installed via composer:

{
    "require": {
            "brian978/acamar": "1.*"
        }
}

Starter application

The framework uses a specific file structure (which can be found in the documentation). If you don't want to create the structure manually you can use the skeleton application from HERE.