2017 © Pedro Peláez
 

project m4mvc

Simple php framework

image

m4/m4mvc

Simple php framework

  • Wednesday, November 22, 2017
  • by Matoo125
  • Repository
  • 1 Watchers
  • 0 Stars
  • 49 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

M4 Framework MVC

GitHub issues Packagist Version, (*1)

This project is in active development. Feel free to contribute or ask me if you have question., (*2)

Read the documentation, (*3)

To install it you can do:, (*4)

composer require m4/m4mvc

Or dev version, (*5)

composer require m4/m4mvc=dev-master

Then:, (*6)

<?php

use m4\m4mvc\core\App;
use m4\m4mvc\core\Module;

require_once('vendor/autoload.php');

$app = new App;
$app->settings = [
    'namespace' =>  'your\\app\\namespace',
  'modules'   =>  true // if you want co use modules
];

// register modules
Module::register(['web', 'admin']);


$app->paths = [
  'controllers' =>  'app/controllers',
  'app' =>  'app',
  'theme'       =>  [
    'web'   =>  'app/theme/web', // path to public theme
    'admin' =>  'app/theme/admin' // path to admin theme
  ]
];

// db connection
$app->db([
  'DB_HOST'   =>  'localhost',
  'DB_PASSWORD' =>  '',
  'DB_NAME'   =>  'test',
  'DB_USER'   =>  'root'
]);

// run the app
$app->run();


Or check M4 MVC Example App., (*7)

Apps running on M4MVC

The Versions

22/11 2017

dev-master

9999999-dev

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

by Avatar Matej

13/10 2017

v0.3.0.2

0.3.0.2

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

by Avatar Matej

28/09 2017

v0.3.0.1

0.3.0.1

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

by Avatar Matej

22/09 2017

v0.3

0.3.0.0

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

by Avatar Matej

28/08 2017

v0.2

0.2.0.0

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

by Avatar Matej

06/07 2017

v0.1

0.1.0.0

Simple php framework

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

by Avatar Matej