PHP Classes

File: bootstrap.php

Recommend this page to a friend!
  Packages of Hernádi Tamás   Rasher PHP Data Access Layer Helper - Database Repository   bootstrap.php   Download  
File: bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Rasher PHP Data Access Layer Helper - Database Repository
Attribute-based PHP data access layer with repos
Author: By
Last change: Update of bootstrap.php
Date: 2 months ago
Size: 211 bytes
 

Contents

Class file image Download
<?php
// bootstrap.php

//declare(strict_types=1);

// PHP version check
if (PHP_VERSION_ID < 70400) {
    die(
"PHP 7.4 or higher is required.");
}

// Polyfills
require_once __DIR__ ."/src/compat/poly.php";

?>