Skip to content

Commit 84694bc

Browse files
committed
fix: Allow PHP 7.1.00
1 parent feb2e2c commit 84694bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/doctum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33

4-
if (PHP_VERSION_ID <= 70100) {
4+
if (PHP_VERSION_ID < 70100) {
55
echo 'You need to use PHP 7.1 to run Doctum.' . PHP_EOL;
66
$majorVersion = (int) (PHP_VERSION_ID / 10000);
77
$minorVersion = (int) substr((string) PHP_VERSION_ID, -4, 2);

0 commit comments

Comments
 (0)