-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathbootstrap.php
More file actions
46 lines (36 loc) · 939 Bytes
/
bootstrap.php
File metadata and controls
46 lines (36 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (\PHP_VERSION_ID < 70300) {
require __DIR__.'/Php73/bootstrap.php';
}
if (\PHP_VERSION_ID < 70400) {
require __DIR__.'/Php74/bootstrap.php';
}
if (\PHP_VERSION_ID < 80000) {
require __DIR__.'/Php80/bootstrap.php';
}
if (\PHP_VERSION_ID < 80100) {
require __DIR__.'/Php81/bootstrap.php';
}
if (\PHP_VERSION_ID < 80200) {
require __DIR__.'/Php82/bootstrap.php';
}
if (\PHP_VERSION_ID < 80300) {
require __DIR__.'/Php83/bootstrap.php';
}
if (\PHP_VERSION_ID < 80400) {
require __DIR__.'/Php84/bootstrap.php';
}
if (\PHP_VERSION_ID < 80500) {
require __DIR__.'/Php85/bootstrap.php';
}
if (\PHP_VERSION_ID < 80600) {
require __DIR__.'/Php86/bootstrap.php';
}