Skip to content

Commit

Permalink
Merge pull request #26 from magento-commerce/php8.4_support
Browse files Browse the repository at this point in the history
Php8.4 support
  • Loading branch information
sidolov authored Jan 6, 2025
2 parents 526da66 + 8afaf3f commit f785d2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
dependencies:
- "lowest"
- "highest"
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"AFL-3.0"
],
"require": {
"php": "~7.4.0||~8.1.0||~8.2.0||~8.3.0",
"composer/composer": "^2.0",
"php": "~7.4.0||~8.1.0||~8.2.0||~8.3.0||~8.4.0",
"composer/composer": "^2.1.13",
"symfony/console": "~4.4.0||~5.4.0||~6.4.0"
},
"require-dev": {
"phpunit/phpunit": "^9 || ^10"
"phpunit/phpunit": "^9.5.10 || ^10"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/MagentoComposerApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ class MagentoComposerApplication
public function __construct(
$pathToComposerHome,
$pathToComposerJson,
Application $consoleApplication = null,
ConsoleArrayInputFactory $consoleArrayInputFactory = null,
BufferedOutput $consoleOutput = null
?Application $consoleApplication = null,
?ConsoleArrayInputFactory $consoleArrayInputFactory = null,
?BufferedOutput $consoleOutput = null
) {
$this->consoleApplication = $consoleApplication ? $consoleApplication : new Application();
$this->consoleArrayInputFactory = $consoleArrayInputFactory ? $consoleArrayInputFactory
Expand Down

0 comments on commit f785d2b

Please sign in to comment.