File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2222 * Session Service Setup *
2323 *********************************************
2424 * To enable sessions in FlightPHP, register the session service.
25- * Docs: https://docs.flightphp.com/en/v3/ awesome-plugins/session
25+ * Docs: https://docs.flightphp.com/awesome-plugins/session
2626 *
2727 * Example:
28- * $app->register('session', \flight\session\ Session::class, [
28+ * $app->register('session', \flight\Session::class, [
2929 * [
30- * 'cookie_name' => 'flight_session ', // Name of the session cookie
31- * 'timeout ' => 3600, // Session timeout in seconds
30+ * 'prefix' => 'flight_session_ ', // Prefix for the session cookie
31+ * 'save_path ' => 'path/to/my/sessions', // Path to save session files
3232 * // ...other options...
3333 * ]
3434 * ]);
You can’t perform that action at this time.
0 commit comments