<?php

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

$app = new Silex\Application();

$app['debug'] = true;

$app->get('/', 'Controllers\IndexController::index')->bind('homepage');

$app->get('/products', 'Controllers\IndexController::viewAllProducts')->bind('all.products');

$app->get('/product/{$id}', 'Controllers\IndexController::viewProduct')->bind('single.product');


$app->run();