2017 © Pedro Peláez
 

project femtimo

A web application core based on symfony. For building an MVC website, with plugins in the future.

image

freedmo/femtimo

A web application core based on symfony. For building an MVC website, with plugins in the future.

  • Friday, July 14, 2017
  • by freedmo
  • Repository
  • 1 Watchers
  • 0 Stars
  • 49 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

femtimo

A web framework, build/based on symfony components. It allows developer to build, easy website based on MVC with magic routing., (*1)

About current state

todo

  • better configuration, via yaml.
  • seo url for routes
  • remove view part from kernel, and make it avaible throw plugin/component
  • basic doctrine plugin/component to be published

Example index.php

A few changes about configuration are coming soon., (*2)

<?php

require_once "vendor/autoload.php";

use femtimo\engine\Kernel;

$application = new Kernel(
"view" /* Folder for view */,
"Project\\Controller\\" /* Namespace from Controller */,
"Project\\Components\\" /* Folder for autoloaded class by DI-Container */,
"Blog" /* Basic controller, which is used as default */,
"show" /* Basic action of basic controller, which is used as default */,
"Component" // Component
);

$request = \Symfony\Component\HttpFoundation\Request::createFromGlobals();

$response = $application->handle($request);

if($response){
  $responce->send();
}

The Versions

14/07 2017

dev-master

9999999-dev

A web application core based on symfony. For building an MVC website, with plugins in the future.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Eduard Gruenwald