Skip to content

Commit

Permalink
feat: Add custom action structure to the create token flow (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: ProcessOut Fountain <[email protected]>
  • Loading branch information
petro-marik-cko and processout-machine authored Sep 17, 2024
1 parent 0ccb74a commit 93d61ed
Show file tree
Hide file tree
Showing 15 changed files with 1,781 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The package's installation is done using composer. Simply add these lines to you
```json
{
"require": {
"processout/processout-php": "^7.0.0"
"processout/processout-php": "^7.1.0"
}
}
```
Expand Down
11 changes: 10 additions & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@
include_once(dirname(__FILE__) . "/src/Token.php");
include_once(dirname(__FILE__) . "/src/Discount.php");
include_once(dirname(__FILE__) . "/src/Event.php");
include_once(dirname(__FILE__) . "/src/ExportLayout.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfiguration.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationColumn.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationTime.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationAmount.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationOptions.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationConfigurationOptionsTime.php");
include_once(dirname(__FILE__) . "/src/ExportLayoutConfigurationConfigurationOptionsAmount.php");
include_once(dirname(__FILE__) . "/src/Gateway.php");
include_once(dirname(__FILE__) . "/src/GatewayConfiguration.php");
include_once(dirname(__FILE__) . "/src/Invoice.php");
Expand Down Expand Up @@ -72,8 +80,9 @@
include_once(dirname(__FILE__) . "/src/CardUpdateRequest.php");
include_once(dirname(__FILE__) . "/src/ErrorCodes.php");
include_once(dirname(__FILE__) . "/src/CategoryErrorCodes.php");
include_once(dirname(__FILE__) . "/src/ExternalThreeDS.php");
include_once(dirname(__FILE__) . "/src/NativeAPMTransactionDetails.php");
include_once(dirname(__FILE__) . "/src/NativeAPMTransactionDetailsGateway.php");
include_once(dirname(__FILE__) . "/src/NativeAPMTransactionDetailsInvoice.php");
include_once(dirname(__FILE__) . "/src/NativeAPMTransactionDetails.php");

include_once(dirname(__FILE__) . "/src/GatewayRequest.php");
Loading

0 comments on commit 93d61ed

Please sign in to comment.