Skip to content

Commit 9a43078

Browse files
committed
Revert "Release v15.2.0 (#552)"
This reverts commit 7df2730.
1 parent 7df2730 commit 9a43078

File tree

133 files changed

+303
-15673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+303
-15673
lines changed

.editorconfig

Lines changed: 0 additions & 25 deletions
This file was deleted.

.gitattributes

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33

44
# Exclude non-essential files from dist
55
/.github export-ignore
6+
/tests export-ignore
67
/.editorconfig export-ignore
7-
/.gitattributes export-ignore
88
/.gitignore export-ignore
9-
/bin export-ignore
109
/CODE_OF_CONDUCT.md export-ignore
1110
/composer.lock export-ignore
1211
/CONTRIBUTING.md export-ignore
1312
/phpcs.xml export-ignore
1413
/phpunit.xml export-ignore
15-
/Makefile export-ignore
1614
/renovate.json export-ignore
17-
/sonar-project.properties export-ignore
18-
/tests export-ignore
1915
/Vagrantfile export-ignore

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,10 @@ jobs:
5858

5959
- name: Make sure project files are compilable
6060
run: find -L . -path ./vendor -prune -o -path ./tests -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
61+
62+
- name: SonarCloud integration
63+
if: ${{ env.SONAR_TOKEN }}
64+
uses: sonarsource/sonarcloud-github-action@master
65+
env:
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/models.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
- run: make models
12-
- name: Setup PHP
12+
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
1515
php-version: 8.2
@@ -36,4 +36,4 @@ jobs:
3636
title: ${{ steps.vars.outputs.pr_title }}
3737
body: ${{ steps.vars.outputs.pr_body }}
3838
add-paths: |
39-
src/Adyen/Model
39+
src/Adyen/Model

.github/workflows/services.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
- run: make all
12-
- name: Setup PHP
12+
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
1515
php-version: 8.2
@@ -37,4 +37,4 @@ jobs:
3737
body: ${{ steps.vars.outputs.pr_body }}
3838
add-paths: |
3939
src/Adyen/Model
40-
src/Adyen/Service
40+
src/Adyen/Service

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ composer.lock
2222
.phpunit.result.cache
2323

2424
# Automation
25-
/target/
25+
/target/

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ include:
2323
Examples of unacceptable behavior by participants include:
2424

2525
* The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
26+
advances
2727
* Trolling, insulting/derogatory comments, and personal or political attacks
2828
* Public or private harassment
2929
* Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
30+
address, without explicit permission
3131
* Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
32+
professional setting
3333

3434
## Our Responsibilities
3535

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ openapi-generator-jar:=target/openapi-generator-cli.jar
44
openapi-generator-cli:=java -jar $(openapi-generator-jar)
55

66
generator:=php
7-
modelGen:=AcsWebhooks BalanceControl BalancePlatform Checkout ConfigurationWebhooks StoredValue Payments Payout Management ManagementWebhooks LegalEntityManagement TransferWebhooks Transfers BinLookup StoredValue POSTerminalManagement Recurring ReportWebhooks
7+
modelGen:=BalanceControl BalancePlatform Checkout ConfigurationWebhooks StoredValue Payments Payout Management LegalEntityManagement TransferWebhooks Transfers BinLookup StoredValue POSTerminalManagement Recurring ReportWebhooks
88
models:=src/Adyen/Model
99
output:=target/out
1010

@@ -24,14 +24,10 @@ Payout: spec=PayoutService-v68
2424
Management: spec=ManagementService-v1
2525
LegalEntityManagement: spec=LegalEntityService-v3
2626
Transfers: spec=TransferService-v3
27-
2827
# BalanceWebhooks
29-
AcsWebhooks: spec=BalancePlatformAcsNotification-v1
3028
ConfigurationWebhooks: spec=BalancePlatformConfigurationNotification-v1
3129
ReportWebhooks: spec=BalancePlatformReportNotification-v1
3230
TransferWebhooks: spec=BalancePlatformTransferNotification-v3
33-
# ManagementWebhooks
34-
ManagementWebhooks: spec=ManagementNotificationService-v1
3531

3632
# Classic Platforms
3733
marketpay/account: spec=AccountService-v6

README.md

Lines changed: 22 additions & 40 deletions
Large diffs are not rendered by default.

bin/composer-installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ fi
1414
php composer-setup.php --quiet
1515
RESULT=$?
1616
rm composer-setup.php
17-
exit $RESULT
17+
exit $RESULT

0 commit comments

Comments
 (0)