@@ -20,9 +20,9 @@ if (version_compare(PHP_VERSION, '7.4.0', '<') === true) {
2020 exit (1 );
2121}
2222
23- if (!getenv ('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP ' ) && version_compare (PHP_VERSION , '8.3 .0 ' , '>= ' ) === true ) {
23+ if (!getenv ('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP ' ) && version_compare (PHP_VERSION , '8.4 .0 ' , '>= ' ) === true ) {
2424 fwrite (STDERR , "\n" );
25- fwrite (STDERR , 'PHP 8.3 + is not supported by this version of Terminus. ' . "\n" );
25+ fwrite (STDERR , 'PHP 8.4 + is not supported by this version of Terminus. ' . "\n" );
2626 fwrite (STDERR , 'Check for new versions at https://github.com/pantheon-systems/terminus/releases ' . "\n" );
2727 fwrite (STDERR , "\n" );
2828 fwrite (STDERR , 'Set environment variable TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP to try continuing anyway. ' . "\n" );
@@ -32,7 +32,7 @@ if (!getenv('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP') && version_compare(PHP_VERSI
3232
3333// This variable is automatically managed via updateDependenciesversion() in /RoboFile.php,
3434// which is run after every call to composer update.
35- $ terminusPluginsDependenciesVersion = '27e14f5059 ' ;
35+ $ terminusPluginsDependenciesVersion = 'f512ad328f ' ;
3636
3737// Cannot use $_SERVER superglobal since that's empty during phpunit testing
3838// getenv('HOME') isn't set on Windows and generates a Notice.
@@ -55,8 +55,8 @@ $pharPath = \Phar::running(true);
5555if ($ pharPath ) {
5656 include_once ("$ pharPath/vendor/autoload.php " );
5757} elseif (file_exists ($ path = __DIR__ . '/../vendor/autoload.php ' )
58- || file_exists ($ path = __DIR__ . '/../../autoload.php ' )
59- || file_exists ($ path = __DIR__ . '/../../../autoload.php ' )
58+ || file_exists ($ path = __DIR__ . '/../../autoload.php ' )
59+ || file_exists ($ path = __DIR__ . '/../../../autoload.php ' )
6060) {
6161 include_once ($ path );
6262} else {
@@ -70,9 +70,9 @@ $home_tokens_folder = '.terminus' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SE
7070$ tokens_dir = $ home . DIRECTORY_SEPARATOR . $ home_tokens_folder ;
7171if (!is_dir ($ tokens_dir )) {
7272 mkdir (
73- $ tokens_dir ,
74- 0700 ,
75- true
73+ $ tokens_dir ,
74+ 0700 ,
75+ true
7676 );
7777}
7878
0 commit comments