PHP Classes

File: bootstrap.php

Recommend this page to a friend!
  Classes of Lucas de Oliveira   PHP API de Notificação de Concurso Público   bootstrap.php   Download  
File: bootstrap.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP API de Notificação de Concurso Público
Get information about public tenders in São Paulo
Author: By
Last change:
Date: 7 years ago
Size: 243 bytes
 

Contents

Class file image Download
<?php

date_default_timezone_set
('America/Sao_Paulo');

require_once
__DIR__ . '/vendor/autoload.php';

use
Silex\Application;
use
DOLucas\Concurso\Provider\ResourceProvider;

$app = new Application();

$app->register(new ResourceProvider());