Skip to content

Commit

Permalink
Merge pull request #190 from laravel/adding-php84
Browse files Browse the repository at this point in the history
Adding PHP 8.4 InstallableServices
  • Loading branch information
jbrooksuk authored Jan 8, 2025
2 parents 904144f + c8a5f12 commit 26fcdb2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1_Bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ body:
attributes:
label: PHP Version
description: Provide the PHP version that you are using.
placeholder: 8.1.4
placeholder: 8.4.2
validations:
required: true
- type: input
Expand All @@ -44,4 +44,4 @@ body:
description: Provide detailed steps to reproduce your issue. If necessary, please provide a GitHub repository to demonstrate your issue using `laravel new bug-report --github="--public"`.
validations:
required: true

2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3, 8.4]

name: PHP ${{ matrix.php }}

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
composer.lock
/phpunit.xml
.phpunit.result.cache
.idea
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $server = $forge->createServer([
"size"=> "01",
"database"=> "test123",
"database_type" => InstallableServices::POSTGRES,
"php_version"=> InstallableServices::PHP_71,
"php_version"=> InstallableServices::PHP_84,
"region"=> "ams2"
]);
```
Expand Down
2 changes: 2 additions & 0 deletions src/Resources/InstallableServices.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class InstallableServices

const PHP_83 = 'php83';

const PHP_84 = 'php84';

const MYSQL = 'mysql';

const MYSQL_8 = 'mysql8';
Expand Down

0 comments on commit 26fcdb2

Please sign in to comment.