PHP code example of katalam / laravel-cookieless-session

1. Go to this page and download the library: Download katalam/laravel-cookieless-session library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

katalam / laravel-cookieless-session example snippets


return [
    'header' => [
        'name' => 'X-Session-Token', // The name of the header to be used
        'er in the query string or in the request body
    ],
];

use Katalam\Cookieless\Http\Middleware\StartSession;
use Illuminate\Session\Middleware\StartSession as DefaultStartSession;
 
$middleware->web(replace: [
    DefaultStartSession::class => StartSession::class,
]);

use Katalam\Cookieless\Http\Middleware\StartSession;

Route::get('/profile', function () {
    // ...
})->middleware(StartSession::class);
bash
php artisan vendor:publish --tag="cookieless-session-config"