Skip to content

Commit 3efe922

Browse files
committed
Updated some things to match new Trident changes.
1 parent e78295c commit 3efe922

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

app/config/config.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
'database' => 'Test'
1818
]
1919
],
20+
'security' => [
21+
'forms' => [
22+
'csrf_secret' => 'GI5_lvR)pWp5(RQOBO5k#sOmX6sYxW9F'
23+
]
24+
],
2025
'twig' => [
2126
'cache_dir' => __DIR__.'/../cache/twig'
2227
]

app/config/routes.yml

Whitespace-only changes.

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
},
99
"require": {
1010
"php": ">=5.5.3",
11-
"strident/trident": "1.0.2-alpha",
12-
"symfony/yaml": "2.5.*"
11+
"strident/trident": "1.0.5-alpha2"
1312
},
1413
"config": {
1514
"bin-dir": "bin"

public/index_dev.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
require_once __DIR__.'/../app/TridentKernel.php';
55

66
$request = Trident\Component\HttpFoundation\Request::createFromGlobals();
7-
$kernel = new TridentKernel('dev', TridentKernel::DEBUG_ENABLED);
87
$kernel = new TridentKernel('dev', TridentKernel::DEBUG_DISABLED);
8+
$kernel = new TridentKernel('dev', TridentKernel::DEBUG_ENABLED);
99

1010
$response = $kernel->handle($request);
1111
$response->send();

0 commit comments

Comments
 (0)