Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Mar 21, 2024
2 parents 2390b67 + 0feea49 commit fcf4266
Show file tree
Hide file tree
Showing 7 changed files with 321 additions and 247 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Bug Report
about: Report an issue or unexpected behavior
labels:
- bug # Linear
- Craft Commerce # Linear
- Craft Commerce → Worldpay # Linear
---

### Description



### Steps to reproduce

1.
2.

### Additional info

- Craft version:
- PHP version:
- Database driver & version:
- Plugins & versions:
21 changes: 21 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Release
run-name: Create release for ${{ github.event.client_payload.version }}

on:
repository_dispatch:
types:
- craftcms/new-release

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: ncipollo/release-action@v1
with:
body: ${{ github.event.client_payload.notes }}
makeLatest: ${{ github.event.client_payload.latest }}
name: ${{ github.event.client_payload.version }}
prerelease: ${{ github.event.client_payload.prerelease }}
tag: ${{ github.event.client_payload.tag }}
16 changes: 16 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Add issues to project

on:
issues:
types:
- opened
- transferred

jobs:
add-to-project:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
project-url: https://github.com/orgs/craftcms/projects/16
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes for Worldpay Online Payments for Craft Commerce

## 4.1.0 - 2024-03-20
- Added Craft CMS 5 and Craft Commerce 5 compatibility.

## 4.0.0 - 2022-05-04

### Added
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ This integration uses Worldpay's [Online Payments](https://developer.worldpay.co
## Requirements

This plugin requires Craft 4.0 and Craft Commerce 4.0 or later.
This plugin requires either:

- Craft 4.0 and Craft Commerce 4.0 or later.
- Craft 5.0 and Craft Commerce 5.0 or later.

## Installation

Expand Down
12 changes: 5 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
},
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-RC3",
"craftcms/commerce": "^4.0.0-RC1",
"craftcms/commerce-omnipay": "^4.0.0-RC1",
"craftcms/cms": "^4.0.0-RC3|^5.0.0-beta.7",
"craftcms/commerce": "^4.0.0-RC1|^5.0.0-beta.1",
"craftcms/commerce-omnipay": "^4.1.0",
"omnipay/worldpay": "^3.0.0"
},
"minimum-stability": "dev",
Expand All @@ -53,10 +53,8 @@
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
},
"platform": {
"php": "8.0.2"
"craftcms/plugin-installer": true,
"php-http/discovery": true
}
}
}
Loading

0 comments on commit fcf4266

Please sign in to comment.