/prado

Prado3 - Component Framework for PHP 5

Primary LanguagePHPOtherNOASSERTION

Prado PHP Framework

PRADO is a component-based and event-driven programming framework for developing Web applications in PHP 5. PRADO stands for PHP Rapid Application Development Object-oriented.

Build Status Coverage Status Dependencies Status Total Downloads Latest Stable Version

A Word Of Warning

Prado migration to Github has just been completed, if you find any problem please open an issue here or on the forum.

API Documentation

The complete API documentation can be found at http://www.pradoframework.com/docs/manual/

Install

The best way to install Prado is through composer.

Just create a composer.json file for your project:

{
    "require": {
        "pradosoft/prado": "~3.2"
    }
}

Then you can run these two commands to install it:

$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install

or simply run composer install if you have have already installed the composer globally.

Then you can include the autoloader, and you will have access to the library classes:

<?php
require 'vendor/autoload.php';