We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0c188 commit d89f396Copy full SHA for d89f396
composer.json
@@ -2,7 +2,7 @@
2
"name": "framework-w/skeleton",
3
"type": "project",
4
"description": "A minimal structure for Framework W project",
5
- "version": "1.1.0",
+ "version": "1.1.1",
6
"minimum-stability": "dev",
7
"license": "MIT",
8
"prefer-stable": true,
public/index.php
@@ -1,4 +1,7 @@
1
<?php
+if(session_status() === PHP_SESSION_NONE){
+ session_start();
+}
//vendor installé ?
if (!file_exists('../vendor/autoload.php')){
echo '<p>Vous devez installer les dépendances du projet avec la commande <code>composer install</code>. En effet, ceux-ci ne sont pas versionnés.</p>';
0 commit comments