rawphp/raw-application

RawApplication is a core application class that is a central point for RawPHP framework and other applications.

dev-master / 0.x-dev 2014-12-29 21:16 UTC

This package is auto-updated.

Last update: 2024-03-20 07:17:07 UTC


README

Build Status Coverage Status

Latest Stable Version Total Downloads Latest Unstable Version License

Package Features

  • A central class for an application
  • Provides access to the request, session, database, router, etc.

Installation

Composer

RawApplication is available via Composer/Packagist.

Add "rawphp/raw-application": "0.*@dev" to the require block in your composer.json and then run composer install.

{
        "require": {
            "rawphp/raw-application": "0.*@dev"
        }
}

You can also simply run the following from the command line:

composer require rawphp/raw-application "0.*@dev"

Tarball

Alternatively, just copy the contents of the RawApplication folder into somewhere that's in your PHP include_path setting. If you don't speak git or just want a tarball, click the 'zip' button at the top of the page in GitHub.

Basic Usage

<?php

use RawPHP\RawApplication\Application;

// create your application class by extending the base Application class
class CoolApp extends Application
{

}

// declare configuration for the app (see example in package)
$config = array(
    'application_name' => 'Cool App',
    ...
);

$app = new CoolApp( );

// initialise the app
$app->init( $config );

// run the app
$app->run( );

License

This package is licensed under the MIT. Read LICENSE for information on the software availability and distribution.

Contributing

Please submit bug reports, suggestions and pull requests to the GitHub issue tracker.

Changelog

22-09-2014

  • Updated to PHP 5.3.

20-09-2014

  • Replaced php array configuration with yaml

19-09-2014

  • Updated application configuration
  • Added debug flag for application components in config.

18-09-2014

  • Updated to work with the latest rawphp/rawbase package.

17-09-2014

  • Reduced component dependency to just the essentials in composer.

14-09-2014

  • Initial Code Commit