Download the PHP package kletellier/mvc without Composer
On this page you can find all versions of the php package kletellier/mvc. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kletellier/mvc
More information about kletellier/mvc
Files in kletellier/mvc
Package mvc
Short Description A small MVC framework based on Symfony component and Eloquent ORM
License GPL-3.0-or-later
Informations about the package mvc
Introduction
A small PHP MVC Framework using Symfony components, Eloquent ORM, FPDF, Redis and PHPExcel Wrapper.
Components
- Symfony
- Http Foundation
- Routing
- Yaml
- Dependency Injection
- Filesystem
- Finder
- Stopwatch
- Config
- Console
- Illuminate
- Eloquent
- Blade
- PHPMailer
- PSR Log
- Predis
Objective
The objective was to create a small framework for understand how it works in internal, and also for using it in small projects.
Installation
-
Give write access to cache,upload and tmp folders
-
Launch for download all packages needed and create autoload script
-
Create a new website on your webserver pointing on public folder
- Change website configuration file
Open
The debug paramater display error description. Never use true in production website.
The webpath parameter is the root url of your website.
The template section set the engine used for rendering templates (default is blade).
The locale parameters is using for translator object (translation files are stored in lang folder).
in templates section, you can add your own tendering engine implementation, the class must implement \GL\Core\Templating\TemplateServiceInterface interface.
If you want using twig, just add twig in your composer.json and change type from blade to twig in config/template/engine section.
The mail section provide all parameters for mail sending. You can send mail by using mailer object in container. (See GL\Core\Tools\Mailer class).
The redis section provide all parameters for using redis cache system.
The security section :
- specify a security class who implement GL\Core\Security\AuthenticationServiceInterface , by default GL\Core\Security\AuthenticationService.
- You must create table by using console security:create
- Select a cookie session name, duration
- The route file configuration
Open
Each route must have a key name (the section name), and must include pattern,controller and action. You can add optional value bye adding variable between bracket in pattern section, and also you must add defaults section and define default value for each optional parameter. The position is very important, for determining selected route, the parser select the first url pattern matching�!!!
How it works
routing
We type http://localhost/xls in our browser, the routing component detect you're using route, the controller was and the action to execute .
If no route matched, 404 action of ErrorController was executed.
controller
All your controller are class that inherit from . You must store this file with a normalized name as ControllernameController.php in the folder.
In our example DefaultController.php.
After this the controller resolver component will try to instanciate this controller and try execute the action , in our case the xls function.
The controller must return via render methods proposed by abstract controller class.
By using
return a Http Response with 200 status code, with Hello text.
Controller embed many render functions, like renderJSON for rendering all objects as JSON string.
You can also redirect to other action/controller by using�:
template
And also you have render function for using Blade Template engine.
The render function submit all params provided in array to the template file index.blade.php.
All templates are stored in
You can add some subfolders in Views for each controller, like Default folder for default controller.
By default, the template engine will take the template file in controller folder (in our case ) , if it will be not found, it will try to find them in Views root folder ( ).
Render function return an , you can specify Http Status Code (by default 200) , and add headers as key-value array with overloaded methods.
If you only want the Html, you can use�:
That return only raw Html.
All documentation about Blade are here [Blade] (https://laravel.com/docs/5.1/blade).
I've add an url function, for retrieve absolute url form relative url, based on webpath parameters in
give http://localhost/xls
You can use console with this command for clearing cache: .
You can add your own method in Blade by adding @use(\Application\Classes\MyClass) in the template and calling .
If you doesn't want use Blade you can put PHP file in views folder and use
it works like an include file.
Dependency injection
Each controller instance own his DI container, you can retrieve each service on this container, by using get function�:
You have many services on each container�:
- mailer : instance, a wrapper of PHPMailer.
- request�: instance.
- request_helper�: instance.
- template : instance.
- routes�: all routes defined in .
- pdf�: instance, wrapper of TCPDF.
- excel�: instance, wrapper of PhpExcel.
- session : instance.
- crsf : instance.
- translator : instance.
- security : instance.
- debug : instance (debug bar).
- pdo : PDO instance of started database.
- config : instance for reading yml config files.
- db : instance for database interactions.
- redis : instance, wrapper of Predis.
You can add your own services in DI container by adding reference in .
This is Symfony yml format more information here :
http://symfony.com/doc/current/components/dependency_injection/introduction.html
Eloquent ORM
You can create models in folder.
In example, you have test table in your database.
You create a PHP Class Test who inherit from .
You store it in
In your controller you can access all data in this table,
For more information about Eloquent ORM�:
[Eloquent ORM] (http://laravel.com/docs/eloquent)
Documentation
For Symfony Component�:
[Symfony] (http://symfony.com/fr/components)
For Eloquent�ORM�:
[Eloquent ORM] (http://laravel.com/docs/eloquent)
For Blade :
[Blade] (https://laravel.com/docs/5.1/blade)
For PHPMailer :
[PHPMailer] (https://github.com/PHPMailer/PHPMailer)
All versions of mvc with dependencies
symfony/http-foundation Version 4.0.*
symfony/routing Version 4.0.*
symfony/yaml Version 4.0.*
illuminate/database Version 5.3.*
symfony/dependency-injection Version 4.0.*
symfony/stopwatch Version 4.0.*
phpmailer/phpmailer Version 6.0.*
symfony/class-loader Version 3.4.*
symfony/finder Version 4.0.*
symfony/filesystem Version 4.0.*
symfony/config Version 4.0.*
symfony/console Version 4.0.*
symfony/event-dispatcher Version 4.0.*
psr/log Version 1.0.*
maximebf/debugbar Version 1.*
mobiledetect/mobiledetectlib Version 2.8.*
symfony/var-dumper Version 4.0.*
beberlei/assert Version 2.8.*
danielstjules/stringy Version 3.1.*
nesbot/carbon Version 1.22.*
predis/predis Version 1.1.*
hoa/mime Version ~3.0
filp/whoops Version 2.1.*
philo/laravel-blade Version 3.*
nikic/php-parser Version 3.1.*