From c58327c73bd02891927571bb941b32af8ec8a817 Mon Sep 17 00:00:00 2001 From: Mario Lorenz Date: Thu, 23 Nov 2023 13:52:59 +0100 Subject: [PATCH] add some requirements and change Version-Number --- CHANGELOG.md | 14 ++++++++++++++ composer.json | 7 ++++++- metadata.php | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..553661b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Change Log for Stripe for OXID + +All notable changes to this project will be documented in this file. +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [2.0.0] - 2023-11-?? + +- split version for OXID 7 + +## [1.0.0] - 2022-11-03 + +### Changed +- initial release diff --git a/composer.json b/composer.json index 914d995..413eb4b 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,6 @@ "type": "oxideshop-module", "keywords": ["oxid", "modules", "eShop"], "homepage": "https://www.oxid-esales.com", - "version": "1.0.0", "license": [ "GPL-3.0" ], @@ -13,6 +12,12 @@ "target-directory": "osc/stripe" } }, + "conflict": { + "oxid-esales/oxideshop-ce": "<7.0" + }, + "require": { + "stripe/stripe-php": "^13" + }, "autoload": { "psr-4": { "OxidSolutionCatalysts\\Stripe\\": "./" diff --git a/metadata.php b/metadata.php index 4177373..f84615a 100644 --- a/metadata.php +++ b/metadata.php @@ -24,7 +24,7 @@ 'en' => 'This module integrates STRIPE as payment provider in your OXID Shop.', ], 'thumbnail' => 'img/stripe_logo.png', - 'version' => '1.0.0', + 'version' => '2.0.0', 'author' => 'OXID eSales AG', 'url' => 'https://www.oxid-esales.com', 'email' => 'info@oxid-esales.com',