Skip to content
Permalink
eb10a0f2e2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (13 sloc) 378 Bytes
<?php
$autoloader = require './vendor/autoload.php'; // Composer Autoload Libraries
$autoloader->add('', __DIR__ . '/generated-classes/'); // Propel ORM Classes
require './generated-conf/config.php'; // Propel Config
require './config.php'; // Slim Config
// Init Slim
$app = new \Slim\App($config);
/**
* Routes
*/
require './routes/category.php';
// Run App
$app->run();