File: bootstrap.php

package info (click to toggle)
php-enum 4.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 556 kB
  • sloc: php: 3,489; xml: 15; makefile: 8
file content (10 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
<?php

$zendassertions = ini_get('zend.assertions');
if ($zendassertions != -1) {
    echo 'Please disable zend.assertions in php.ini (zend.assertions = -1)' . PHP_EOL
        . "Current ini setting: zend.assertions = {$zendassertions}]" . PHP_EOL;
    exit(1);
}

require_once __DIR__ . '/../vendor/autoload.php';