Skip to content

Commit 540f01f

Browse files
author
Michał Myszka
committed
Release 2.0.2
1 parent d14caf9 commit 540f01f

File tree

18 files changed

+1103
-920
lines changed

18 files changed

+1103
-920
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## [2.0.2] - 2025-08-28
3+
### Fix
4+
- Fixed doctypes/code-style
5+
- Added missing customFields in customer webhooks: note, id_gender, id_default_group, language
26

37
## [2.0.1] - 2025-07-07
48
### Fix

classes/WebserviceSpecificManagementGetresponseModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ private function getPluginDetails()
192192

193193
return json_encode(
194194
[
195-
'plugin_version' => '2.0.1',
195+
'plugin_version' => '2.0.2',
196196
'prestashop_version' => _PS_VERSION_,
197197
'php_version' => phpversion(),
198198
'shops' => $shops,

composer.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
],
1212
"config": {
1313
"preferred-install": "dist",
14-
"prepend-autoloader": false
14+
"prepend-autoloader": false,
15+
"allow-plugins": {
16+
"dealerdirect/phpcodesniffer-composer-installer": true
17+
}
1518
},
1619
"type": "prestashop-module",
1720
"minimum-stability": "stable",
@@ -20,13 +23,15 @@
2023
"beberlei/assert": "2.*"
2124
},
2225
"require-dev": {
23-
"phpunit/phpunit": "^5.0",
26+
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0 || ^8.0",
2427
"prestashop/php-dev-tools": "^5.0",
2528
"friendsofphp/php-cs-fixer": "^3.4",
2629
"captainhook/captainhook": "^5.14",
27-
"phpstan/phpstan": "^1.12",
30+
"phpcompatibility/php-compatibility": "^9.3",
31+
"phpstan/phpstan": "^1.12 || ^2.1",
2832
"prestashop/autoindex": "^2.1",
29-
"prestashop/header-stamp": "^2.6"
33+
"prestashop/header-stamp": "^2.6",
34+
"dealerdirect/phpcodesniffer-composer-installer": "^1.1"
3035
},
3136
"autoload": {
3237
"psr-4": {

0 commit comments

Comments
 (0)