Skip to content

Commit c7ed2a9

Browse files
Merge pull request #561 from Adyen/automation/release
Release v15.3.0
2 parents 9a43078 + 3e7a22a commit c7ed2a9

File tree

157 files changed

+23347
-366
lines changed

Some content is hidden

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

157 files changed

+23347
-366
lines changed

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
max_line_length = 165
11+
eclint_block_comment_start = /*
12+
eclint_block_comment = *
13+
eclint_block_comment_end = */
14+
15+
[Makefile]
16+
indent_style = tab
17+
max_line_length = unset
18+
19+
[{*.xml,*.yml,*.yaml}]
20+
indent_size = 2
21+
22+
[{*.json,*.md,*.mustache}]
23+
indent_size = 2
24+
max_line_length = unset
25+
insert_final_newline = unset

.gitattributes

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

44
# Exclude non-essential files from dist
55
/.github export-ignore
6-
/tests export-ignore
76
/.editorconfig export-ignore
7+
/.gitattributes export-ignore
88
/.gitignore export-ignore
9+
/bin export-ignore
910
/CODE_OF_CONDUCT.md export-ignore
1011
/composer.lock export-ignore
1112
/CONTRIBUTING.md export-ignore
1213
/phpcs.xml export-ignore
1314
/phpunit.xml export-ignore
15+
/Makefile export-ignore
1416
/renovate.json export-ignore
17+
/sonar-project.properties export-ignore
18+
/tests export-ignore
1519
/Vagrantfile export-ignore

.github/workflows/main.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
tools: composer:v2
2020

2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
# Disabling shallow clone to improve relevancy of SonarCloud reporting
2525
fetch-depth: 0
@@ -58,10 +58,3 @@ 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
name: Generate Models
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
name: Generate Models
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
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: 5 additions & 1 deletion
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:=BalanceControl BalancePlatform Checkout ConfigurationWebhooks StoredValue Payments Payout Management LegalEntityManagement TransferWebhooks Transfers BinLookup StoredValue POSTerminalManagement Recurring ReportWebhooks
7+
modelGen:=AcsWebhooks BalanceControl BalancePlatform Checkout ConfigurationWebhooks StoredValue Payments Payout Management ManagementWebhooks LegalEntityManagement TransferWebhooks Transfers BinLookup StoredValue POSTerminalManagement Recurring ReportWebhooks
88
models:=src/Adyen/Model
99
output:=target/out
1010

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

3236
# Classic Platforms
3337
marketpay/account: spec=AccountService-v6

README.md

Lines changed: 40 additions & 22 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)