Removed unused config stuff

This commit is contained in:
Alejandro Celaya 2016-04-10 09:48:07 +02:00
parent 4ec4e492e6
commit c6997bda64
4 changed files with 4 additions and 13 deletions

View File

@ -28,13 +28,11 @@
},
"autoload": {
"psr-4": {
"App\\": "src/App/",
"Acelaya\\UrlShortener\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "tests/AppTest/",
"AcelayaTest\\UrlShortener\\": "tests"
}
},

View File

@ -3,7 +3,9 @@
return [
'templates' => [
'extension' => 'html.twig',
'paths' => [
'templates'
],
],
'twig' => [

View File

@ -1,9 +0,0 @@
<?php
return [
'twig' => [
'cache_dir' => false,
],
];

View File

@ -1,4 +1,4 @@
{% extends '@layout/default.html.twig' %}
{% extends 'layout/default.html.twig' %}
{% block title %}Home{% endblock %}