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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mvc

Introduction

A small PHP MVC Framework using Symfony components, Eloquent ORM, FPDF, Redis and PHPExcel Wrapper.

Components

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

  1. Give write access to cache,upload and tmp folders

  2. Launch for download all packages needed and create autoload script

  3. Create a new website on your webserver pointing on public folder

  4. 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 
  1. 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�:

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

PHP Build Version
Package Version
Requires php Version >=5.4.9
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.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kletellier/mvc contains the following files

Loading the files please wait ....