Skip to content

Commit

Permalink
chore: supporting PHP 8.2
Browse files Browse the repository at this point in the history
Supporting all supported versions of PHP 8.2 and 8.3
  • Loading branch information
JimTools committed May 19, 2024
1 parent 2702b5f commit 5bc06a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.3]
php: [8.2, 8.3]
experimental: [false]
include:
- php: 8.3
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
],
"require": {
"php": "^8.3",
"php": "^8.2",
"ext-json": "*",
"monolog/monolog": "^2.9",
"php-di/php-di": "^6.4",
Expand Down
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
$containerBuilder = new ContainerBuilder();

if (false) { // Should be set to true in production
$containerBuilder->enableCompilation(__DIR__ . '/../var/cache');
$containerBuilder->enableCompilation(__DIR__ . '/../var/cache');
}

// Set up settings
Expand Down

0 comments on commit 5bc06a7

Please sign in to comment.