PackageTrack
Sign in Get early access

gopay/payments-sdk-php

GoPay's PHP SDK for Payments REST API

1.11.1 1.8M downloads/mo #4376 most downloaded on Packagist gopaycommunity/gopay-php-api

What this package is like to depend on

Last release 4 months ago

16 Apr 2026

Release timing varies

gaps range from 8 days to 12 months

Some releases are documented

notes for 17 of 47 stable releases

Nothing withdrawn

no release was ever pulled

11 years old

47 releases · first in 2015

3 releases in the last 12 months

see the full history below

Release timeline

46 releases · Nov 2015 to Apr 2026
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 47
  1. 1.11.1 16 Apr 2026
    Release notes

    Added encoding of data, support for BGN

    Open source →
  2. 1.11.0 08 Apr 2026
    Release notes

    Added new QR payment feature

    Open source →
  3. 1.10.4 13 Oct 2025
    Release notes

    Added new bank swifts - Revolut, bank365

    Open source →
  4. 1.10.3 05 Jun 2025
    Release notes

    Added new bank swift PTBNCZPP

    Open source →
  5. 1.10.2 07 Jan 2025

    Nothing published for this version

  6. 1.10.1 24 Sep 2024
    Release notes

    Added User-Agent with version

    Open source →
  7. 1.10.0 12 Sep 2024

    Nothing published for this version

  8. 1.9.0 06 Sep 2024
    Release notes
    • Added BNPL Payment method
    Open source →
  9. 1.8.0 03 Sep 2024
    Release notes
    Open source →
  10. v1.7.3 20 Sep 2023
    Release notes

    fixes #60

    Open source →
  11. v1.7.2 12 Sep 2023

    Nothing published for this version

  12. v1.7.1 12 Jun 2023

    Nothing published for this version

  13. v1.7.0 17 May 2023

    Nothing published for this version

  14. v1.6.2 no date

    Nothing published for this version

  15. v1.6.1 12 Jan 2023

    Nothing published for this version

  16. v1.6.0 12 Jan 2023

    Nothing published for this version

  17. v1.5.7 10 Nov 2022

    Nothing published for this version

  18. v1.5.6 10 Aug 2022

    Nothing published for this version

  19. v1.5.5 14 Jul 2022

    Nothing published for this version

  20. v1.5.4 27 Apr 2022

    Nothing published for this version

  21. v1.5.3 30 Mar 2022

    Nothing published for this version

  22. v1.5.2 16 Feb 2022

    Nothing published for this version

  23. v1.5.1 02 Feb 2022

    Nothing published for this version

  24. v1.5.0 01 Feb 2022

    Nothing published for this version

  25. v1.4.7 07 Dec 2021

    Nothing published for this version

  26. v1.4.6 02 Nov 2021
    Release notes
    • Added _5048 substate
    Open source →
  27. v1.4.5 10 Aug 2021
    Release notes
    • isProductionMode is now deprecated and will be removed
    • gatewayUrl parameter is preferred way to set gateway url
    • Supercash payment method is no longer supported by the payment gateways, relevant code marked as deprecated
    Open source →
  28. v1.4.4 12 Oct 2020
    Release notes
    • Dropped support for Guzzle 5 depedency
    • Added Guzzle 7 support
    Open source →
  29. v1.4.3 13 Aug 2020
    Release notes
    • isProductionMode may now take anything that can be resolved as a boolean via filter_var ("yes", "true", true ...)
    Open source →
  30. v1.4.2 02 Jul 2020

    Nothing published for this version

  31. v1.4.1 11 Jul 2019

    Nothing published for this version

  32. v1.4.0 14 Dec 2018

    Nothing published for this version

  33. v1.3.6 14 Dec 2018

    Nothing published for this version

  34. v1.3.5 10 Jul 2018

    Nothing published for this version

  35. v1.3.4 02 Nov 2017

    Nothing published for this version

  36. v1.3.3 02 Nov 2017

    Nothing published for this version

  37. v1.3.2 05 Oct 2017

    Nothing published for this version

  38. v1.3.1 29 Aug 2017

    Nothing published for this version

  39. v1.3.0 25 Jul 2017

    Nothing published for this version

  40. v1.2.3 03 May 2017

    Nothing published for this version

  41. v1.2.2 28 Apr 2017

    Nothing published for this version

  42. v1.2.1 21 Feb 2017

    Nothing published for this version

  43. v1.2.0 13 Feb 2017
    Release notes
    • Added EET Support
    Open source →
  44. v1.1.1 11 Apr 2016
    Release notes
    • Fix GoPay\Definition\Payment\BankSwiftCode::KOMERCNI_BANKA
    • Composer autoload-dev
    • Update badges in readme (#2)
    Open source →
  45. v1.1.0 07 Dec 2015
    Release notes
    • Add travis-ci
    • Simplified token caching, based on python-sdk
      • TokenCache handles only set/get token, no isExpired method
      • $client is passed as first argument instead of setClient method
      • getAccessToken can return null if token does not exist

    Before

    <?php
    
    use GoPay\Token\TokenCache;
    use GoPay\Token\AccessToken;
    
    class PrimitiveFileCache extends TokenCache
    {
        private $file;
    
        public function setClient($client)
        {
            $this->file = __DIR__ . "/{$client}";
        }
    
        public function setAccessToken(AccessToken $t)
        {
            file_put_contents($this->file, serialize($t);
        }
    
        public function getAccessToken()
        {
            if (file_exists($this->file)) {
                return unserialize(file_get_contents($this->file));
            }
            return $this->getExpiredToken(); 
        }
    }
    

    After

    <?php
    
    use GoPay\Token\TokenCache;
    use GoPay\Token\AccessToken;
    
    class PrimitiveFileCache implements TokenCache
    {
        private $file;
    
        private function setClient($client)
        {
            $this->file = __DIR__ . "/{$client}";
        }
    
        public function setAccessToken($client, AccessToken $t)
        {
            $this->setClient($client);
            file_put_contents($this->file, serialize($t);
        }
    
        public function getAccessToken($client)
        {
            $this->setClient($client);
            if (file_exists($this->file)) {
                return unserialize(file_get_contents($this->file));
            }
            return null;
        }
    }
    
    Open source →
  46. v1.0.1 23 Nov 2015
    Release notes
    • Add phpunit's bootstrap (#1)
    Open source →
  47. v1.0.0 02 Nov 2015
    Release notes
    • Call every API method without validation
    • Cache access token
    • Log HTTP communication
    Open source →

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive