Skip to content

Commit 9aa7a68

Browse files
Try upgrading to Robo ^5
1 parent 5777ed7 commit 9aa7a68

File tree

4 files changed

+792
-834
lines changed

4 files changed

+792
-834
lines changed

bin/terminus

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.4.0', '>=') === true) {
23+
if (!getenv('TERMINUS_ALLOW_UNSUPPORTED_NEWER_PHP') && version_compare(PHP_VERSION, '8.5.0', '>=') === true) {
2424
fwrite(STDERR, "\n");
25-
fwrite(STDERR, 'PHP 8.4+ is not supported by this version of Terminus.' . "\n");
25+
fwrite(STDERR, 'PHP 8.5+ 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 = 'a6b56bb299';
35+
$terminusPluginsDependenciesVersion = 'cd4fc325d6';
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.

composer.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"php": ">=7.4",
1717
"ext-json": "*",
1818
"composer/semver": "^3",
19-
"consolidation/comments": "^1.0.2",
19+
"consolidation/comments": "^2",
2020
"consolidation/filter-via-dot-access-data": "^2.0",
2121
"consolidation/output-formatters": "^4",
2222
"consolidation/self-update": "^2.0.4",
@@ -28,20 +28,15 @@
2828
"monolog/monolog": "^2.2",
2929
"psy/psysh": "^0.11.9",
3030
"rogervila/array-diff-multidimensional": "^2.0",
31-
"symfony/console": "^5",
32-
"symfony/finder": "^5",
33-
"symfony/process": "^5",
34-
"symfony/yaml": "^5",
3531
"twig/twig": "^3.3",
36-
"consolidation/robo": "^3.0"
32+
"consolidation/robo": "^5"
3733
},
3834
"require-dev": {
3935
"ext-pcov": "*",
4036
"behat/behat": "^3.2.2",
4137
"erusev/parsedown": "^1.7",
4238
"friendsofphp/php-cs-fixer": "^3.17",
4339
"pcov/clobber": "^2.0",
44-
"php-vcr/php-vcr": "~1.5.2",
4540
"phpunit/php-code-coverage": "^9.2",
4641
"phpunit/phpcov": "^8.2",
4742
"phpunit/phpunit": "^9",
@@ -168,7 +163,7 @@
168163
"preferred-install": "dist",
169164
"sort-packages": true,
170165
"platform": {
171-
"php": "7.4"
166+
"php": "8.2.26"
172167
},
173168
"allow-plugins": {
174169
"phpstan/extension-installer": true

0 commit comments

Comments
 (0)