Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade dependency require-dev and php8 #67

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 27.0.0

## Features

### PHP 8.1 Compatibility

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

# Version 26.1.5

## Bugfixes
Expand Down Expand Up @@ -26,7 +36,6 @@
* Add #PAC-354 new feature:
* extend the validation for catalog_product entity
* `"import.callback.store.in.website.validator"`


# Version 26.1.2

Expand Down
24 changes: 12 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"description": "Pacemaker library providing basic Magento 2 EE product import functionality",
"license": "MIT",
"require": {
"php": ">=7.3.0",
"techdivision/import-ee": "^16.0.0",
"techdivision/import-product": "^25.0.0"
"php": "^8.1",
"techdivision/import-ee": "^17.0.0",
"techdivision/import-product": "^26.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"
"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
Loading