PHP Classes

File: web/index_dev.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   pH7 PHP Web App Boilerplate   web/index_dev.php   Download  
File: web/index_dev.php
Role: Example script
Content type: text/plain
Description: Example script
Class: pH7 PHP Web App Boilerplate
Start a Web app development using boilerplate code
Author: By
Last change:
Date: 1 year ago
Size: 296 bytes
 

Contents

Class file image Download
<?php

namespace PH7\Boilerplate;

use
Silex\Application;

require
dirname(__DIR__) . '/vendor/autoload.php';

$app = new Application();

require
dirname(__DIR__) . '/app/config/dev.php';
require
dirname(__DIR__) . '/app/bootstrap.php';
require
dirname(__DIR__) . '/app/routes.php';

$app->run();