diff --git a/README.md b/README.md index c6a6eb8..954cdf8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Version -3.21.1 +4.0.0 ## Requirements @@ -19,11 +19,11 @@ BIG FISH Payment Gateway is available at packagist.org, so you can use composer ``` { "require": { - "bigfish/paymentgateway": "3.*" + "pmgw/payment-gateway-php-sdk": "4.*" } } ``` ## Source code -https://github.com/bigfish-hu/payment-gateway-php-sdk +https://github.com/pmgw-hu/payment-gateway-php-sdk diff --git a/composer.json b/composer.json index 0553dce..d0a62a0 100644 --- a/composer.json +++ b/composer.json @@ -1,18 +1,18 @@ { - "name": "bigfish/paymentgateway", + "name": "pmgw/payment-gateway-php-sdk", "description": "BIG FISH Payment Gateway - PHP SDK", "type": "library", - "keywords": ["payment", "ecommerce", "webshop"], + "keywords": ["payment", "ecommerce", "webshop", "php", "sdk"], "homepage": "https://www.paymentgateway.hu/", "license": "MIT", "authors": [ { - "name": "BIG FISH", - "email": "cafe@bigfish.hu" + "name": "BIG FISH Payment Services Ltd.", + "email": "it@paymentgateway.hu" } ], "support": { - "email": "paymentgateway@bigfish.hu" + "email": "it@paymentgateway.hu" }, "require": { "php": "~5.3|~7.0|~8.0" diff --git a/src/BigFish/PaymentGateway.php b/src/BigFish/PaymentGateway.php index 5320ecc..9ad2df6 100644 --- a/src/BigFish/PaymentGateway.php +++ b/src/BigFish/PaymentGateway.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish; @@ -57,7 +57,7 @@ class PaymentGateway * SDK Version * */ - const VERSION = '3.21.1'; + const VERSION = '4.0.0'; /** * API request type constants diff --git a/src/BigFish/PaymentGateway/Autoload.php b/src/BigFish/PaymentGateway/Autoload.php index 08d25e2..c2874b8 100644 --- a/src/BigFish/PaymentGateway/Autoload.php +++ b/src/BigFish/PaymentGateway/Autoload.php @@ -2,9 +2,9 @@ /** * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK - * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway; diff --git a/src/BigFish/PaymentGateway/Config.php b/src/BigFish/PaymentGateway/Config.php index c91ee5b..9b4ab1a 100644 --- a/src/BigFish/PaymentGateway/Config.php +++ b/src/BigFish/PaymentGateway/Config.php @@ -2,9 +2,9 @@ /** * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK - * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway; diff --git a/src/BigFish/PaymentGateway/Data/Info.php b/src/BigFish/PaymentGateway/Data/Info.php index f694195..50c6e69 100644 --- a/src/BigFish/PaymentGateway/Data/Info.php +++ b/src/BigFish/PaymentGateway/Data/Info.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoAbstract.php b/src/BigFish/PaymentGateway/Data/Info/InfoAbstract.php index 197b51f..8370509 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoAbstract.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoAbstract.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerBrowser.php b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerBrowser.php index b5edd19..a294205 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerBrowser.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerBrowser.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerGeneral.php b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerGeneral.php index 17add30..c2cb4d2 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerGeneral.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerGeneral.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerStoreSpecific.php b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerStoreSpecific.php index 59f33da..53bc05b 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoCustomerStoreSpecific.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoCustomerStoreSpecific.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoInterface.php b/src/BigFish/PaymentGateway/Data/Info/InfoInterface.php index 720cf04..2491426 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoInterface.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoInterface.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoOrderBillingData.php b/src/BigFish/PaymentGateway/Data/Info/InfoOrderBillingData.php index f06b0c2..96f4b65 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoOrderBillingData.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoOrderBillingData.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoOrderGeneral.php b/src/BigFish/PaymentGateway/Data/Info/InfoOrderGeneral.php index 00fcba5..ec54097 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoOrderGeneral.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoOrderGeneral.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoOrderProductItem.php b/src/BigFish/PaymentGateway/Data/Info/InfoOrderProductItem.php index 7502c8f..465dfa4 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoOrderProductItem.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoOrderProductItem.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoOrderRecurringPayment.php b/src/BigFish/PaymentGateway/Data/Info/InfoOrderRecurringPayment.php index c24a2be..92a2f77 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoOrderRecurringPayment.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoOrderRecurringPayment.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/Info/InfoOrderShippingData.php b/src/BigFish/PaymentGateway/Data/Info/InfoOrderShippingData.php index b598477..cda9075 100644 --- a/src/BigFish/PaymentGateway/Data/Info/InfoOrderShippingData.php +++ b/src/BigFish/PaymentGateway/Data/Info/InfoOrderShippingData.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data\Info; diff --git a/src/BigFish/PaymentGateway/Data/PayWallAbstract.php b/src/BigFish/PaymentGateway/Data/PayWallAbstract.php index df21573..ff8e2df 100644 --- a/src/BigFish/PaymentGateway/Data/PayWallAbstract.php +++ b/src/BigFish/PaymentGateway/Data/PayWallAbstract.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data; diff --git a/src/BigFish/PaymentGateway/Data/PayWallSettings.php b/src/BigFish/PaymentGateway/Data/PayWallSettings.php index 14e3678..bfacf6a 100644 --- a/src/BigFish/PaymentGateway/Data/PayWallSettings.php +++ b/src/BigFish/PaymentGateway/Data/PayWallSettings.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data; diff --git a/src/BigFish/PaymentGateway/Data/PayWallStoreSettings.php b/src/BigFish/PaymentGateway/Data/PayWallStoreSettings.php index 2e7d240..4c6e7bc 100644 --- a/src/BigFish/PaymentGateway/Data/PayWallStoreSettings.php +++ b/src/BigFish/PaymentGateway/Data/PayWallStoreSettings.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2019, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Data; diff --git a/src/BigFish/PaymentGateway/Exception.php b/src/BigFish/PaymentGateway/Exception.php index 5d55833..c737ad6 100644 --- a/src/BigFish/PaymentGateway/Exception.php +++ b/src/BigFish/PaymentGateway/Exception.php @@ -2,9 +2,9 @@ /** * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK - * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway; diff --git a/src/BigFish/PaymentGateway/Request/CancelAllPaymentRegistrations.php b/src/BigFish/PaymentGateway/Request/CancelAllPaymentRegistrations.php index a988e2b..877ead4 100644 --- a/src/BigFish/PaymentGateway/Request/CancelAllPaymentRegistrations.php +++ b/src/BigFish/PaymentGateway/Request/CancelAllPaymentRegistrations.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/CancelPaymentRegistration.php b/src/BigFish/PaymentGateway/Request/CancelPaymentRegistration.php index a8fec2e..be4dd72 100644 --- a/src/BigFish/PaymentGateway/Request/CancelPaymentRegistration.php +++ b/src/BigFish/PaymentGateway/Request/CancelPaymentRegistration.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Close.php b/src/BigFish/PaymentGateway/Request/Close.php index 04d8c79..e15029a 100644 --- a/src/BigFish/PaymentGateway/Request/Close.php +++ b/src/BigFish/PaymentGateway/Request/Close.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Details.php b/src/BigFish/PaymentGateway/Request/Details.php index 628e5f8..4c6b1b8 100644 --- a/src/BigFish/PaymentGateway/Request/Details.php +++ b/src/BigFish/PaymentGateway/Request/Details.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Finalize.php b/src/BigFish/PaymentGateway/Request/Finalize.php index 112e602..7751fb0 100644 --- a/src/BigFish/PaymentGateway/Request/Finalize.php +++ b/src/BigFish/PaymentGateway/Request/Finalize.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/GetPaymentRegistrations.php b/src/BigFish/PaymentGateway/Request/GetPaymentRegistrations.php index 738746f..8a3fd40 100644 --- a/src/BigFish/PaymentGateway/Request/GetPaymentRegistrations.php +++ b/src/BigFish/PaymentGateway/Request/GetPaymentRegistrations.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Init.php b/src/BigFish/PaymentGateway/Request/Init.php index 45a1d32..b476bdd 100644 --- a/src/BigFish/PaymentGateway/Request/Init.php +++ b/src/BigFish/PaymentGateway/Request/Init.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/InitRP.php b/src/BigFish/PaymentGateway/Request/InitRP.php index 7469a47..4dfc1a4 100644 --- a/src/BigFish/PaymentGateway/Request/InitRP.php +++ b/src/BigFish/PaymentGateway/Request/InitRP.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Invoice.php b/src/BigFish/PaymentGateway/Request/Invoice.php index f99fe70..8d02fff 100644 --- a/src/BigFish/PaymentGateway/Request/Invoice.php +++ b/src/BigFish/PaymentGateway/Request/Invoice.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Log.php b/src/BigFish/PaymentGateway/Request/Log.php index 8d3fed2..a5b1aa5 100644 --- a/src/BigFish/PaymentGateway/Request/Log.php +++ b/src/BigFish/PaymentGateway/Request/Log.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/OneClickOptions.php b/src/BigFish/PaymentGateway/Request/OneClickOptions.php index 7f54bff..16b22b7 100644 --- a/src/BigFish/PaymentGateway/Request/OneClickOptions.php +++ b/src/BigFish/PaymentGateway/Request/OneClickOptions.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/OneClickTokenCancel.php b/src/BigFish/PaymentGateway/Request/OneClickTokenCancel.php index d641043..ed66eb9 100644 --- a/src/BigFish/PaymentGateway/Request/OneClickTokenCancel.php +++ b/src/BigFish/PaymentGateway/Request/OneClickTokenCancel.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/OneClickTokenCancelAll.php b/src/BigFish/PaymentGateway/Request/OneClickTokenCancelAll.php index 4d59732..4982eb3 100644 --- a/src/BigFish/PaymentGateway/Request/OneClickTokenCancelAll.php +++ b/src/BigFish/PaymentGateway/Request/OneClickTokenCancelAll.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PayWallPaymentDetails.php b/src/BigFish/PaymentGateway/Request/PayWallPaymentDetails.php index a5f8d60..9b4e317 100644 --- a/src/BigFish/PaymentGateway/Request/PayWallPaymentDetails.php +++ b/src/BigFish/PaymentGateway/Request/PayWallPaymentDetails.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PayWallPaymentInit.php b/src/BigFish/PaymentGateway/Request/PayWallPaymentInit.php index 9531a73..e25058b 100644 --- a/src/BigFish/PaymentGateway/Request/PayWallPaymentInit.php +++ b/src/BigFish/PaymentGateway/Request/PayWallPaymentInit.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PayWallPaymentUpdate.php b/src/BigFish/PaymentGateway/Request/PayWallPaymentUpdate.php index e70aa6d..0004bb3 100644 --- a/src/BigFish/PaymentGateway/Request/PayWallPaymentUpdate.php +++ b/src/BigFish/PaymentGateway/Request/PayWallPaymentUpdate.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PaymentLinkCancel.php b/src/BigFish/PaymentGateway/Request/PaymentLinkCancel.php index a5d1c94..e8c38e5 100644 --- a/src/BigFish/PaymentGateway/Request/PaymentLinkCancel.php +++ b/src/BigFish/PaymentGateway/Request/PaymentLinkCancel.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PaymentLinkCreate.php b/src/BigFish/PaymentGateway/Request/PaymentLinkCreate.php index 63571d5..1c31c8f 100644 --- a/src/BigFish/PaymentGateway/Request/PaymentLinkCreate.php +++ b/src/BigFish/PaymentGateway/Request/PaymentLinkCreate.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/PaymentLinkDetails.php b/src/BigFish/PaymentGateway/Request/PaymentLinkDetails.php index c286bfb..b21acec 100644 --- a/src/BigFish/PaymentGateway/Request/PaymentLinkDetails.php +++ b/src/BigFish/PaymentGateway/Request/PaymentLinkDetails.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Payout.php b/src/BigFish/PaymentGateway/Request/Payout.php index 166fec6..5a052aa 100644 --- a/src/BigFish/PaymentGateway/Request/Payout.php +++ b/src/BigFish/PaymentGateway/Request/Payout.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Providers.php b/src/BigFish/PaymentGateway/Request/Providers.php index cfa5a2d..4f92835 100644 --- a/src/BigFish/PaymentGateway/Request/Providers.php +++ b/src/BigFish/PaymentGateway/Request/Providers.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Refund.php b/src/BigFish/PaymentGateway/Request/Refund.php index 30ffca9..ef078d4 100644 --- a/src/BigFish/PaymentGateway/Request/Refund.php +++ b/src/BigFish/PaymentGateway/Request/Refund.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/RequestAbstract.php b/src/BigFish/PaymentGateway/Request/RequestAbstract.php index 51f8562..405f7cc 100644 --- a/src/BigFish/PaymentGateway/Request/RequestAbstract.php +++ b/src/BigFish/PaymentGateway/Request/RequestAbstract.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Result.php b/src/BigFish/PaymentGateway/Request/Result.php index 2a40051..2d3fcf9 100644 --- a/src/BigFish/PaymentGateway/Request/Result.php +++ b/src/BigFish/PaymentGateway/Request/Result.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Settlement.php b/src/BigFish/PaymentGateway/Request/Settlement.php index 2807d61..01fab37 100644 --- a/src/BigFish/PaymentGateway/Request/Settlement.php +++ b/src/BigFish/PaymentGateway/Request/Settlement.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2018, BIG FISH Payment Services Ltd. + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/SettlementRefund.php b/src/BigFish/PaymentGateway/Request/SettlementRefund.php index d9f6b8b..78a1530 100644 --- a/src/BigFish/PaymentGateway/Request/SettlementRefund.php +++ b/src/BigFish/PaymentGateway/Request/SettlementRefund.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2018, BIG FISH Payment Services Ltd. + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/Start.php b/src/BigFish/PaymentGateway/Request/Start.php index 8fe1b6a..8b6ac7c 100644 --- a/src/BigFish/PaymentGateway/Request/Start.php +++ b/src/BigFish/PaymentGateway/Request/Start.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Request/StartRP.php b/src/BigFish/PaymentGateway/Request/StartRP.php index bb2fa80..ca57488 100644 --- a/src/BigFish/PaymentGateway/Request/StartRP.php +++ b/src/BigFish/PaymentGateway/Request/StartRP.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway\Request; diff --git a/src/BigFish/PaymentGateway/Response.php b/src/BigFish/PaymentGateway/Response.php index df067e1..5cc5470 100644 --- a/src/BigFish/PaymentGateway/Response.php +++ b/src/BigFish/PaymentGateway/Response.php @@ -3,8 +3,8 @@ * BIG FISH Payment Gateway (https://www.paymentgateway.hu) * PHP SDK * - * @link https://github.com/bigfish-hu/payment-gateway-php-sdk.git - * @copyright (c) 2015, BIG FISH Internet-technology Ltd. (http://bigfish.hu) + * @link https://github.com/pmgw-hu/payment-gateway-php-sdk.git + * @copyright (c) 2024, BIG FISH Payment Services Ltd. */ namespace BigFish\PaymentGateway;