Skip to content

Commit

Permalink
Merge pull request #717 from humanmade/1578-add-php8.3-support
Browse files Browse the repository at this point in the history
Add support for PHP 8.3
  • Loading branch information
mikelittle authored Jul 30, 2024
2 parents f50c029 + e3b5635 commit cbf6190
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions inc/composer/class-docker-compose-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ public function __construct( string $root_dir, string $project_name, string $tld
*/
protected function get_php_reusable() : array {
$version_map = [
'8.2' => 'humanmade/altis-local-server-php:8.2.12',
'8.1' => 'humanmade/altis-local-server-php:6.0.13',
'8.3' => 'humanmade/altis-local-server-php:8.3.7',
'8.2' => 'humanmade/altis-local-server-php:8.2.20',
'8.1' => 'humanmade/altis-local-server-php:6.0.14',
];

$versions = array_keys( $version_map );
Expand Down

0 comments on commit cbf6190

Please sign in to comment.