-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
26 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 |
---|---|---|
|
@@ -10,9 +10,7 @@ | |
use Paynl\Payment\Helper\PayHelper; | ||
|
||
/** | ||
* Redirects the user. | ||
* | ||
* @author Andy Pieters <[email protected]> | ||
* Redirects the user after payment | ||
*/ | ||
class Redirect extends PayAction | ||
{ | ||
|
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 |
---|---|---|
|
@@ -8,8 +8,6 @@ | |
|
||
/** | ||
* Get / Set configuration for the PAY api and Magento settings. | ||
* | ||
* @author Andy Pieters <[email protected]> | ||
*/ | ||
class Config | ||
{ | ||
|
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 |
---|---|---|
@@ -1,24 +1,42 @@ | ||
{ | ||
"name": "paynl/magento2-plugin", | ||
"description": "PAY. Payment methods for Magento2", | ||
"type": "magento2-module", | ||
"version": "3.6.0", | ||
"require": { | ||
"magento/module-sales": "^102.0.0 || ^103.0.0", | ||
"magento/module-payment": "^100.3.0", | ||
"magento/module-quote": "^101.1.0", | ||
"paynl/sdk": "^1.5.19" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Andy Pieters", | ||
"email": "[email protected]" | ||
"name": "paynl/magento2-plugin", | ||
"description": "PAY. Payment methods for Magento2", | ||
"type": "magento2-module", | ||
"version": "3.6.1", | ||
"require": { | ||
"magento/module-sales": "^102.0.0 || ^103.0.0", | ||
"magento/module-payment": "^100.3.0", | ||
"magento/module-quote": "^101.1.0", | ||
"paynl/sdk": "^1.5.19" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Andy Pieters", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Kevin Verschoor", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Anne van Velden", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Wouter Jonker", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"support": { | ||
"email": "[email protected]", | ||
"docs": "https://docs.pay.nl/plugins#magento-2" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
"registration.php" | ||
], | ||
"psr-4": { | ||
"Paynl\\Payment\\": "" | ||
} | ||
} | ||
], | ||
"autoload": { | ||
"files": [ "registration.php" ], | ||
"psr-4": { | ||
"Paynl\\Payment\\": "" | ||
} | ||
} | ||
} |