-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from buckaroo-it/develop
Develop
- Loading branch information
Showing
35 changed files
with
462 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: SonarQube Analysis | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- "releases/**" | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
build: | ||
name: SonarQube Analysis | ||
runs-on: ubuntu-latest | ||
permissions: read-all | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- uses: sonarsource/sonarqube-scan-action@master | ||
env: | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"MM/YY","MM/AA" | ||
"Expiration:","Expiration :" | ||
"Billing Middle Name:","Deuxième prénom (facturation):" | ||
"Select giftcard issuer:","Sélectionner l'émetteur de la carte-cadeau:" | ||
"PIN / Security code:","Code PIN / Code de sécurité:" | ||
"Please select issuer","Veuillez sélectionner l'émetteur:" | ||
"Voucher code:","Code du bon d'achat:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"MM/YY","MM/JJ" | ||
"Expiration:","Vervaldatum:" | ||
"Billing Middle Name:","Tussenvoegsel voor facturatienaam:" | ||
"Select giftcard issuer:","Selecteer Cadeaukaart:" | ||
"PIN / Security code:","PIN-/beveiligingscode:" | ||
"Please select issuer","Selecteer de uitgever" | ||
"Voucher code:","Voucher code:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"MM/YY","MM/JJ" | ||
"Expiration:","Vervaldatum:" | ||
"Billing Middle Name:","Tussenvoegsel voor facturatienaam:" | ||
"Select giftcard issuer:","Selecteer Cadeaukaart:" | ||
"PIN / Security code:","PIN-/beveiligingscode:" | ||
"Please select issuer","Selecteer de uitgever" | ||
"Voucher code:","Voucher code:" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Unique key for the project | ||
sonar.projectKey=Hyva-Checkout | ||
|
||
# Display name and version for the SonarQube UI | ||
sonar.projectName=Hyva Checkout | ||
sonar.projectVersion=1.0 | ||
|
||
# Path to the source code, relative to the sonar-project.properties file | ||
sonar.sources=. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
layout="checkout" | ||
xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd" | ||
> | ||
<body> | ||
<referenceContainer name="hyva.checkout.api-v1.after"> | ||
<block name="checkout.buckaroo_after_api-v1" | ||
as="buckaroo_after_api-v1" | ||
template="Buckaroo_HyvaCheckout::component/payment/after.phtml"> | ||
</block> | ||
</referenceContainer> | ||
</body> | ||
</page> |
Oops, something went wrong.