Skip to content

Commit

Permalink
Merge pull request #21 from techdivision/compatibility-php-81
Browse files Browse the repository at this point in the history
PHP 8.1 Compatibility
  • Loading branch information
kenza-ya authored Jul 24, 2024
2 parents 674aab4 + 0e7b762 commit b63d802
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 13.0.0

## Features

### PHP 8.1 Compatibility

* Update dependencies
* Add PHP ">=8.1" support
* Remove PHP 7.3 support

# Version 12.5.3

## Bugfixes
Expand Down
34 changes: 17 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
"description": "Commands and Helpers to implement a CLI providing single-threaded Magento 2 importing functionality based on Pacemaker",
"license": "MIT",
"require": {
"php": ">=7.3.0",
"ramsey/uuid": "^3.7|^3.8|^4.1|^4.2",
"symfony/config": "~2.8|~3.0|~4.0|~5.0|~6.0",
"symfony/console": "~2.3,!=2.7.0|~4.0|~5.0|~6.0|~7.0",
"symfony/expression-language": "~2.3,!=2.7.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3,!=2.7.0|~3.0|~4.0|~5.0|~6.0",
"techdivision/import-app-simple": "^18.0.0",
"techdivision/import-configuration-jms": "^17.0.0"
"php": "^8.1",
"ramsey/uuid": "^4.2|^4.7",
"symfony/config": "~4.0|~5.0|~6.0",
"symfony/console": "~4.0|~5.0|~6.0|~7.0",
"symfony/expression-language": "~6.0",
"symfony/dependency-injection": "~4.0|~5.0|~6.0",
"techdivision/import-app-simple": "^19.0.0",
"techdivision/import-configuration-jms": "^18.0.0"
},
"require-dev": {
"doctrine/dbal": "2.5.*",
"pdepend/pdepend": "2.5.2",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^6.5.0|^8.0.0|~9.5.0",
"sebastian/phpcpd": "~3.0|~4.0|~5.0|~6.0",
"squizlabs/php_codesniffer":"~3.4.0|~3.6.0",
"consolidation/robo": "~1.0",
"mikey179/vfsstream": "~1.0",
"symfony/http-kernel": "~2.0|~3.0|~4.0|~5.0|~6.0"
"doctrine/dbal": "^4.0.4",
"pdepend/pdepend": "^2.16.2",
"phpmd/phpmd": "^2.15.0",
"phpunit/phpunit": "^11.2.5",
"sebastian/phpcpd": "^2.0.1",
"squizlabs/php_codesniffer": "^3.10.1",
"consolidation/robo": "^4.0.2",
"mikey179/vfsstream": "~1.6.11",
"symfony/http-kernel": "~4.4.51"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down

0 comments on commit b63d802

Please sign in to comment.