Giter Site home page Giter Site logo

base's Introduction

PHP Simple Framework

Learning PHP OOP

Features:

Examples:

File: routes/web.php

$r->get('/', ['HomeController@index']);
$r->post(
    '/',
    [
        'PostController@store',
        'middlewares' => ['CsrfVerify']
    ]
);

File: src/Controllers/HomeController.php

<?php declare (strict_types=1);

namespace App\Controllers;

use App\View\FrontRenderInterface;
use App\Util\AppSession;

class HomeController
{
    private $view;
    private $session;

    public function __construct(
        FrontRenderInterface $view,
        AppSession $session
    )
    {
        $this->view = $view;
        $this->session = $session;
        $this->session->sessStart();
    }
}

public function index(array $param = [])
{
    return $this->view->render('[view_name]', [
        'data' => ModelData::all()
    ]);
}

File: resources/views/home.php

<?php $this->layout('layout', ['title' => 'Home Page']);?>

<ul>
    <?php foreach($data as $row): ?>
    <li><?=$this->e($row->name)?></li>
    <form action='' method='post'>
        <?=$this->_method('put')?>
        <?=$this->csrf()?>
        <input type='text' name='name'/>
        <input type='submit' value='submit' />
    </form>
    <?php endforeach; ?>
</ul>

Composer Scripts

  • tsc

    compile typescripts files to public/js/

  • composer asset

    compile app.scss to public/app.css

  • composer test

    run phpunit tests

  • composer test-log

    create phpunit log

  • composer test-coverage

    create phpunit coverage

base's People

Contributors

ahmedadel35 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.