rawphp / raw-application
RawApplication is a core application class that is a central point for RawPHP framework and other applications.
Requires
- php: >=5.4.0
- rawphp/raw-container: dev-master
- rawphp/raw-database: 0.*@dev
- rawphp/raw-error-handler: 0.*@dev
- rawphp/raw-log: 0.*@dev
- rawphp/raw-mail: 0.*@dev
- rawphp/raw-request: 0.*@dev
- rawphp/raw-router: 0.*@dev
- rawphp/raw-session: 0.*@dev
- rawphp/raw-support: dev-master
Requires (Dev)
- phpunit/phpunit: 4.2.5
- rawphp/raw-code-standards: 1.*@dev
- satooshi/php-coveralls: dev-master
This package is auto-updated.
Last update: 2024-10-20 08:33:01 UTC
README
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