PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 2.1.0
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v2.1.0
2.1.0 2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 All 42 releases
← All changes | vendor/composer/platform_check.php +2 -3 1.212.1.0 View file →
@@ -18,9 +18,8 @@
18 18 } elseif (!headers_sent()) {
19 19 echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
20 20 }
21 21 }
22 - trigger_error(
23 - 'Composer detected issues in your platform: ' . implode(' ', $issues),
24 - E_USER_ERROR
22 + throw new \RuntimeException(
23 + 'Composer detected issues in your platform: ' . implode(' ', $issues)
25 24 );
26 25 }