Download the PHP package rampage-php/framework without Composer
On this page you can find all versions of the php package rampage-php/framework. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rampage-php/framework
More information about rampage-php/framework
Files in rampage-php/framework
Package framework
Short Description Rampage PHP Framework based on Zend Framework 2
License GPL-3.0
Homepage https://github.com/tux-rampage/rampage-php
Informations about the package framework
The Rampage PHP Framework
This framework is based on ZendFramework 2. Its goal is to simplyfy the usage of ZF2 and offer some enhancments.
Key Features
- Tight integration between Di and ServiceManager
- XML based module configurations (XSD provided)
- Powerful resource locators for module resource files (i.e. js and css)
- Advanced url locators/helpers
- Cascading themes support
- Classes for easily handling Console I/O
- Skeleton generator
Documentation
The Documentation can be found on readthedocs.org.
License
This framework is licensed under the terms of the GNU General Public License v3 You can view the license terms in the LICENSE.md file or under http://www.gnu.org/licenses/gpl-3.0-standalone.html
Business Support
Support for this framework and implementations based on this framework are provided by LUKA netconsult GmbH.
Feel free to contact them for:
- Hosting your solution
- Web application development and consulting
- Business SLAs
Setup
Composer
- Add a composer dependency to rampage-php/framework:
php composer.phar require rampage-php/framework
- Run composer.phar install
- Include "vendor/autoload.php" as usual.
Manual setup
- Grab a copy of this framework and ZF2.
- Make sure Zend\Loader\AutoloaderFactory is loaded/included, if it is not in your include path.
- Include rampage.php:
require_once 'rampage.php'
.
Contributing
Please review the contribution guide in CONTRIBUTING.md before making any contributions.
Additional Information / FAQ
Why configs via XML?
It is much easier to document and validate available config options as xml with a xml schema definition (xsd) than a php array.
With the provided xsd files you will have an overview which options are available and how to configure them correctly. The framework encapsulates the translation of the xml to the ZF2 config array.
Is the module's manifest.xml required?
No. It is completely up to you if you'd like to use this feature or not.
What about performance when using XML configs
Since loading a php array is faster than processig xml and it'll benefit from bytecode caches, there is an option to pre-compile the xml definitions of your modules to a static array definition which is preferred when it exists.
All versions of framework with dependencies
zendframework/zend-mvc Version 2.*
zendframework/zend-di Version 2.*
zendframework/zend-i18n Version 2.*
zendframework/zend-modulemanager Version 2.*
zendframework/zend-config Version 2.*
zendframework/zend-view Version 2.*
zendframework/zend-json Version 2.*
zendframework/zend-console Version 2.*
zendframework/zend-log Version 2.*
zendframework/zend-http Version 2.*
zendframework/zend-text Version 2.*
zendframework/zend-servicemanager Version 2.*