blendsdk / blendengine
Generic Backoffice Application Framework
v2.1.2
2017-09-16 19:02 UTC
Requires
- php: >=5.5.9
- monolog/monolog: ^1.17
- symfony/config: ^3.0
- symfony/console: ^3.0
- symfony/event-dispatcher: ^3.0
- symfony/filesystem: ^3.0
- symfony/finder: ^3.0
- symfony/http-foundation: ^3.0
- symfony/process: ^3.0
- symfony/routing: ^3.0
- symfony/translation: ^3.0
- symfony/twig-bridge: ^3.2
- twig/twig: ^1.24
Requires (Dev)
- phpunit/phpunit: 5.1.*
- dev-master
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.22
- v2.0.21
- v2.0.20
- v2.0.19
- v2.0.18
- v2.0.17
- v2.0.16
- v2.0.15
- v2.0.14
- v2.0.13
- v2.0.12
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0
- v1.0
- v0.5
- v0.4
- v0.3
- v0.2
- v0.1
- dev-devel
- dev-class-as-config
- dev-cros-sec
- dev-engine2
- dev-security-handler
This package is not auto-updated.
Last update: 2024-12-21 18:53:46 UTC
README
PLEASE NOTE: This project is in development and not ready to be used in production.
BlendEngine is a web application framework written using Symfony Components. Customized to sit somewhere between Silex and Symfony. It has several core components for creating web applications and public facing websites.
Current built-in functionality:
- Dependency Injection Container, and a Service Container.
- Routing: similar to Symfony and Silex.
- Modules: generic solution similar to Bundles in Symfony.
- Translation: for making the application multi-lingual.
- PostgreSQL: We only support PostgreSQL for obvious reasons.
- Data Models: Generic data mapper and builder for ORM, not Doctrine!
- Template: Support for Twig, and Raw PHP templates.
- JSON configuration: configuration files are in JSON, not .yml.
- PDF generation: Helps generating PDF files using wkhtml2pdf library.
- SwiftMailer: Provides functionality to send e-mails.
- Session Handling: Native (php native) session handling by default but
customizable to use Redis or Memcache
- Text and JSON Response: Creates the correct HTTP response based on
controller/action return values
- Security: Simplified security handling for Form based authentication.
- Roles: Simplified Role handling to tie a Route to a role
- Event Dispatching: Same as Silex and Symfony
- Form Processing: Easy Form processing, included built-in POST->Redirect-GET
- JSON API: Built-in functionality to create JSON (REST-ish) APIs
Requirements
BlendEngine requires the following componenets:
- PHP 5.6 : Is required and must be available from the command prompt.
- composer : Is required and must be available from the command prompt.
- compass : Required if you want to be able to compile the sass files to css
- PostgreSQL : Required if your application needs to work with a database (We don't support MySQL)