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

1.9.0 #154

Merged
merged 17 commits into from
Nov 15, 2023
4 changes: 2 additions & 2 deletions .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.1, 8.2]
php: [7.4, 8.1, 8.2, 8.3]
stability: [prefer-stable]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: SonarQube PR Analysis

on:
push:
branches:
- master
- develop
- develop/
- 'bugfix/**'
pull_request:
types: [opened, synchronize, reopened]
name: SonarQube PR Analysis

jobs:
sonarqube:
runs-on: ubuntu-latest
Expand All @@ -18,4 +20,4 @@ jobs:
uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "buckaroo/sdk",
"description": "Buckaroo payment SDK",
"license": "MIT",
"version": "1.8.0",
"version": "1.9.0",
"type": "library",
"require": {
"php": ">=7.4|^8.0",
Expand Down
1 change: 0 additions & 1 deletion src/PaymentMethods/iDeal/iDeal.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
use Buckaroo\PaymentMethods\PayablePaymentMethod;
use Buckaroo\Services\TraitHelpers\HasIssuers;
use Buckaroo\Transaction\Response\TransactionResponse;
use Buckaroo\Exceptions\BuckarooException;

class iDeal extends PayablePaymentMethod
{
Expand Down