Download the PHP package rawphp/raw-base without Composer
On this page you can find all versions of the php package rawphp/raw-base. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rawphp/raw-base
More information about rawphp/raw-base
Files in rawphp/raw-base
Package raw-base
Short Description RawBase provides base components for RawPHP Framework and other applications.
License MIT
Homepage http://rawphp.org
Informations about the package raw-base
RawBase - Base Classes for PHP Applications
Package Features
- The Component class offers a hook system that can be implemented by all subclasses.
- Static utility methods to dump arrays and objects for debugging
- Base Model class for other application models
Installation
Composer
RawBase is available via Composer/Packagist.
Add "rawphp/raw-base": "1.0.0-RC-2"
to the require block in your composer.json and then run composer install
.
You can also simply run the following from the command line:
Tarball
Alternatively, just copy the contents of the RawBase 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
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
23-09-2014
- Added missing InvalidModelException and NullValueException classes.
22-09-2014
- Added InitializationException and NotImplementedException classes.
- Moved exceptions into RawPHP\RawBase\Exceptions namespace.
21-09-2014
- Tested on PHP 5.3
18-09-2014
- Added debug ability to Component actions and filters - enable debug mode by passing debug => true to Component in
init()
. - Moved RawException from RawPHP\RawBase\Exceptions to RawPHP\RawBase namespace.
- Moved Model from RawPHP\RawBase\Models to RawPHP\RawBase namespace.
17-09-2014
- Added a
$log
member variable to Component class. This can host any logging class instance.
15-09-2014
- Added .travis.yml for CI.
- Updated composer version alias.
13-09-2014
- Removed init() call from Component constructor
11-09-2014
- Initial Code Commit