Skip to content
Open
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
1 change: 0 additions & 1 deletion .env

This file was deleted.

57 changes: 0 additions & 57 deletions .gitlab-ci.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Apache 2.2
<IfModule !mod_authz_core.c>
<Files *.php>
order allow,deny
deny from all
</Files>
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
<Files *.php>
order allow,deny
deny from all
</Files>
</IfModule>
47 changes: 0 additions & 47 deletions .php_cs.dist

This file was deleted.

28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [1.5.0] - 2024-12-18
### Feature
- Added support for cart recovery for non-logged-in users

## [1.4.2] - 2024-10-31
### Feature
- Change storage from cookie to session

## [1.4.1] - 2024-07-26
### Feature
- Compatibility verified for Prestashop 8.1.7

## [1.4.0] - 2024-07-16
### Feature
- Added product_id in payload when sending product, order and customer

## [1.3.4] - 2024-07-02
### Fix
- Fixed: missing vendor catalog

## [1.3.3] - 2024-05-13
### Fix
- Fixed: newsletter name field getting from $_POST array

## [1.3.2] - 2024-02-27
### Feature
- Added prestashop 8 support

## [1.3.1] - 2024-01-15
### Fix
- Added TrackingCode events optimisation
Expand Down
36 changes: 0 additions & 36 deletions Dockerfile

This file was deleted.

24 changes: 0 additions & 24 deletions Makefile

This file was deleted.

6 changes: 5 additions & 1 deletion classes/WebserviceSpecificManagementGetresponseModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/
if (!defined('_PS_VERSION_')) {
exit;
}

include_once _PS_MODULE_DIR_ . '/grprestashop/vendor/autoload.php';

use GetResponse\Configuration\Application\Command\UpsertConfiguration;
Expand Down Expand Up @@ -188,7 +192,7 @@ private function getPluginDetails()

return json_encode(
[
'plugin_version' => '1.3.1',
'plugin_version' => '1.5.0',
'prestashop_version' => _PS_VERSION_,
'php_version' => phpversion(),
'shops' => $shops,
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"prestashop/php-dev-tools": "3.*"
"prestashop/php-dev-tools": "^3.16",
"phpstan/phpstan": "0.12.40"
},
"autoload": {
"psr-4": {
Expand Down
Loading