PHP code example of alcatraz / security

1. Go to this page and download the library: Download alcatraz/security 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/ */

    

alcatraz / security example snippets

sh
use Alcatraz\Security\Security;

class Controller {
 
    function __construct(){
        Security::verifySession();
    }

... [rest of the code]