diff --git a/.gitignore b/.gitignore index 43e6db4..cfd75c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,3 @@ -# hidev internals -.hidev/composer.json -.hidev/composer.lock -.hidev/runtime -.hidev/vendor -/.hidev/composer.json -/.hidev/composer.lock -/.hidev/runtime -/.hidev/vendor -hidev-local.yml - # local config /.env /hidev-local.yml @@ -20,6 +9,7 @@ hidev-local.yml .idea .project .settings +/lsp Thumbs.db nbproject @@ -37,12 +27,24 @@ coverage.clover chkipper.phar composer.phar ocular.phar +phpstan.phar phpunit-skelgen.phar # PHARs php-cs-fixer.phar phpunit.phar +# hidev internals +.hidev/composer.json +.hidev/composer.lock +.hidev/runtime +.hidev/vendor +/.hidev/composer.json +/.hidev/composer.lock +/.hidev/runtime +/.hidev/vendor +hidev-local.yml + # vendor dirs vendor diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 4d60661..931289b 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -7,3 +7,8 @@ tools: enabled: true external_code_coverage: timeout: 600 +build: + nodes: + analysis: + tests: + override: [php-scrutinizer-run] diff --git a/.travis.yml b/.travis.yml index b899257..44bb300 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,11 @@ language: php php: - - 5.6 - - 7 - - 7.1 - - hhvm + 0: 7.1 + 1: 7.2 + 2: 5.6 + 3: 7 + 5: hhvm dist: trusty -matrix: - allow_failures: - - - php: hhvm cache: directories: - $HOME/.composer/cache @@ -18,6 +15,10 @@ before_install: - 'wget http://hiqdev.com/hidev/hidev.phar -O hidev.phar && chmod a+x hidev.phar' - './hidev.phar --version' - './hidev.phar travis/before-install' +matrix: + allow_failures: + - + php: hhvm sudo: false install: - './hidev.phar travis/install' diff --git a/CHANGELOG.md b/CHANGELOG.md index d6609f8..7a6a752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ hiqdev/omnipay-epayservice -------------------------- +## [0.1.2] - 2020-12-01 + +- Pass transaction ID to EPS ([@SilverFire], [@BladeRoot]) + ## [0.1.1] - 2017-10-10 ## [0.1.0] - 2017-05-05 @@ -19,7 +23,8 @@ hiqdev/omnipay-epayservice [andreyklochok@gmail.com]: https://github.com/tafid [@BladeRoot]: https://github.com/BladeRoot [bladeroot@gmail.com]: https://github.com/BladeRoot -[Under development]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.0...HEAD +[Under development]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.1...HEAD [Under]: https://github.com/hiqdev/omnipay-epayservice/releases/tag/Under [0.1.0]: https://github.com/hiqdev/omnipay-epayservice/releases/tag/0.1.0 [0.1.1]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.0...0.1.1 +[0.1.2]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.1...0.1.2 diff --git a/LICENSE b/LICENSE index d94cec3..46b8551 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright © 2015-2017, HiQDev (http://hiqdev.com/) +Copyright © 2015-2020, HiQDev (http://hiqdev.com/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/history.md b/history.md index 0fc7f30..c38613d 100644 --- a/history.md +++ b/history.md @@ -1,6 +1,14 @@ hiqdev/omnipay-epayservice -------------------------- +## [0.1.2] - 2020-12-01 + +- Pass transaction ID to EPS + - [65a983d] 2020-12-01 Established MERCHANT_ORDER_ID passing [@SilverFire] + - [86012a9] 2017-12-15 Merge pull request #2 from bladeroot/fix-txn [@SilverFire] + - [9f33c8a] 2017-12-15 fix get transaction id [@BladeRoot] + - [1123b6c] 2017-11-23 Fixed signature calculationg [@SilverFire] + ## [0.1.1] - 2017-10-10 - [3a07a55] 2017-10-10 Added CompletePurchaseResponse::getCurrency(), enhanced response validity checking [@SilverFire] @@ -50,9 +58,14 @@ hiqdev/omnipay-epayservice [58155c6]: https://github.com/hiqdev/omnipay-epayservice/commit/58155c6 [261e5ee]: https://github.com/hiqdev/omnipay-epayservice/commit/261e5ee [39050a9]: https://github.com/hiqdev/omnipay-epayservice/commit/39050a9 -[Under development]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.0...HEAD +[Under development]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.1...HEAD [Under]: https://github.com/hiqdev/omnipay-epayservice/releases/tag/Under [48eb728]: https://github.com/hiqdev/omnipay-epayservice/commit/48eb728 [0.1.0]: https://github.com/hiqdev/omnipay-epayservice/releases/tag/0.1.0 [3a07a55]: https://github.com/hiqdev/omnipay-epayservice/commit/3a07a55 [0.1.1]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.0...0.1.1 +[65a983d]: https://github.com/hiqdev/omnipay-epayservice/commit/65a983d +[86012a9]: https://github.com/hiqdev/omnipay-epayservice/commit/86012a9 +[9f33c8a]: https://github.com/hiqdev/omnipay-epayservice/commit/9f33c8a +[1123b6c]: https://github.com/hiqdev/omnipay-epayservice/commit/1123b6c +[0.1.2]: https://github.com/hiqdev/omnipay-epayservice/compare/0.1.1...0.1.2 diff --git a/version b/version index 4281370..35d366e 100644 --- a/version +++ b/version @@ -1 +1 @@ -omnipay-epayservice 0.1.1 2017-10-10 14:21:33 +0300 3a07a5524deb9c9cf51679b36dd1a4cb71f1652e +omnipay-epayservice 0.1.2 2020-12-01 16:39:16 +0200 65a983d26b3b45c3b19f0244267c0f567c1fb20b