From 93bc87a34aa4c50aa8492db864fed20f16b73174 Mon Sep 17 00:00:00 2001 From: I Date: Fri, 3 Jun 2016 13:59:00 +0200 Subject: [PATCH 1/4] Removed $data and $payment_method parameters, no longer required. --- src/Gateway.php | 14 +++++++------- src/Util.php | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Gateway.php b/src/Gateway.php index 718c8fe..cfa0a38 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -70,19 +70,19 @@ public function get_supported_payment_methods() { * @see Pronamic_WP_Pay_Gateway::start() * @param Pronamic_Pay_PaymentDataInterface $data */ - public function start( Pronamic_Pay_PaymentDataInterface $data, Pronamic_Pay_Payment $payment, $payment_method = null ) { - $payment->set_transaction_id( md5( time() . $data->get_order_id() ) ); + public function start( Pronamic_Pay_Payment $payment ) { + $payment->set_transaction_id( md5( time() . $payment->get_order_id() ) ); $payment->set_action_url( $this->client->get_action_url() ); - $this->client->set_customer_language( Pronamic_WP_Pay_Gateways_OmniKassa_LocaleHelper::transform( $data->get_language() ) ); - $this->client->set_currency_numeric_code( $data->get_currency_numeric_code() ); - $this->client->set_order_id( Pronamic_WP_Pay_Gateways_OmniKassa_Util::get_order_id( $this->config->order_id, $data, $payment ) ); + $this->client->set_customer_language( Pronamic_WP_Pay_Gateways_OmniKassa_LocaleHelper::transform( $payment->get_language() ) ); + $this->client->set_currency_numeric_code( $payment->get_currency_numeric_code() ); + $this->client->set_order_id( Pronamic_WP_Pay_Gateways_OmniKassa_Util::get_order_id( $this->config->order_id, $payment ) ); $this->client->set_normal_return_url( home_url( '/' ) ); $this->client->set_automatic_response_url( home_url( '/' ) ); - $this->client->set_amount( $data->get_amount() ); + $this->client->set_amount( $payment->get_amount() ); $this->client->set_transaction_reference( $payment->get_transaction_id() ); - switch ( $payment_method ) { + switch ( $payment->get_method() ) { /* * If this field is not supplied in the payment request, then * by default the customer will be redirected to the Rabo diff --git a/src/Util.php b/src/Util.php index dde8181..fc92a1c 100644 --- a/src/Util.php +++ b/src/Util.php @@ -18,10 +18,10 @@ class Pronamic_WP_Pay_Gateways_OmniKassa_Util { * @param Pronamic_Pay_PaymentDataInterface $data * @param Pronamic_Pay_Payment $payment */ - public static function get_order_id( $order_id, Pronamic_Pay_PaymentDataInterface $data, Pronamic_Pay_Payment $payment ) { + public static function get_order_id( $order_id, Pronamic_Pay_Payment $payment ) { // Replacements definition $replacements = array( - '{order_id}' => $data->get_order_id(), + '{order_id}' => $payment->get_order_id(), '{payment_id}' => $payment->get_id(), ); @@ -35,7 +35,7 @@ public static function get_order_id( $order_id, Pronamic_Pay_PaymentDataInterfac // Make sure there is an dynamic part in the order ID if ( 0 === $count ) { - $order_id .= $data->get_order_id(); + $order_id .= $payment->get_order_id(); } return $order_id; From 9abb1ddd799346aadd02237fb06dc94d879ac710 Mon Sep 17 00:00:00 2001 From: I Date: Fri, 3 Jun 2016 14:24:00 +0200 Subject: [PATCH 2/4] ncu --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0dd922c..80796bb 100644 --- a/package.json +++ b/package.json @@ -32,12 +32,12 @@ }, "homepage": "http://www.wp-pay.org/gateways/omnikassa/", "devDependencies": { - "grunt": "~0.4.5", + "grunt": "~1.0.1", "grunt-contrib-jshint": "^1.0.0", "grunt-phpcs": "^0.4.0", "grunt-phplint": "0.0.8", "grunt-phpmd": "^0.1.1", "grunt-phpunit": "^0.3.6", - "load-grunt-tasks": "^3.4.1" + "load-grunt-tasks": "^3.5.0" } } From 98d5012f743f35d48eea3b220fc216858004deb2 Mon Sep 17 00:00:00 2001 From: I Date: Fri, 3 Jun 2016 14:24:08 +0200 Subject: [PATCH 3/4] composer update --- composer.lock | 162 +++++++++++++++++++++++++------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) diff --git a/composer.lock b/composer.lock index 90dee6f..8e2a9b5 100644 --- a/composer.lock +++ b/composer.lock @@ -71,27 +71,26 @@ }, { "name": "wp-pay/core", - "version": "1.3.5", + "version": "1.3.6", "source": { "type": "git", "url": "https://github.com/wp-pay/core.git", - "reference": "6d29e36e13f919b4adad939a1ac1e1923749fddc" + "reference": "99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-pay/core/zipball/6d29e36e13f919b4adad939a1ac1e1923749fddc", - "reference": "6d29e36e13f919b4adad939a1ac1e1923749fddc", + "url": "https://api.github.com/repos/wp-pay/core/zipball/99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19", + "reference": "99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19", "shasum": "" }, "require": { "php": ">=5.2.4", - "xrstf/composer-php52": "1.*" + "xrstf/composer-php52": "^1.0" }, "require-dev": { - "phpmd/phpmd": "^2.2.3", - "satooshi/php-coveralls": "^0.7.1", - "squizlabs/php_codesniffer": "^2.2.0", - "wp-cli/wp-cli": "^0.21.1", + "phpmd/phpmd": "^2.4", + "satooshi/php-coveralls": "^1.0", + "squizlabs/php_codesniffer": "^2.6", "wp-coding-standards/wpcs": "0.9.0" }, "type": "library", @@ -128,20 +127,20 @@ "wordpress", "wp" ], - "time": "2016-03-22 12:29:58" + "time": "2016-04-29 11:49:09" }, { "name": "xrstf/composer-php52", - "version": "v1.0.19", + "version": "v1.0.20", "source": { - "type": "hg", - "url": "https://bitbucket.org/xrstf/composer-php52", - "reference": "9a4a9c46d0347b39bf9159815301dc66fc25324e" + "type": "git", + "url": "https://github.com/composer-php52/composer-php52.git", + "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8" }, "dist": { "type": "zip", - "url": "https://bitbucket.org/xrstf/composer-php52/get/9a4a9c46d0347b39bf9159815301dc66fc25324e.zip", - "reference": "9a4a9c46d0347b39bf9159815301dc66fc25324e", + "url": "https://api.github.com/repos/composer-php52/composer-php52/zipball/bd41459d5e27df8d33057842b32377c39e97a5a8", + "reference": "bd41459d5e27df8d33057842b32377c39e97a5a8", "shasum": "" }, "type": "library", @@ -159,8 +158,7 @@ "license": [ "MIT" ], - "homepage": "http://www.xrstf.de/", - "time": "2015-10-01 14:11:58" + "time": "2016-04-16 21:52:24" } ], "packages-dev": [ @@ -449,20 +447,20 @@ }, { "name": "phpmd/phpmd", - "version": "2.4.2", + "version": "2.4.3", "source": { "type": "git", "url": "https://github.com/phpmd/phpmd.git", - "reference": "fccbdb6b222f6d7a6d35af1c396ba5435cec76a9" + "reference": "2b9c2417a18696dfb578b38c116cd0ddc19b256e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpmd/phpmd/zipball/fccbdb6b222f6d7a6d35af1c396ba5435cec76a9", - "reference": "fccbdb6b222f6d7a6d35af1c396ba5435cec76a9", + "url": "https://api.github.com/repos/phpmd/phpmd/zipball/2b9c2417a18696dfb578b38c116cd0ddc19b256e", + "reference": "2b9c2417a18696dfb578b38c116cd0ddc19b256e", "shasum": "" }, "require": { - "pdepend/pdepend": "~2.0", + "pdepend/pdepend": "^2.0.4", "php": ">=5.3.0" }, "require-dev": { @@ -510,7 +508,7 @@ "phpmd", "pmd" ], - "time": "2016-03-10 17:17:44" + "time": "2016-04-04 11:52:04" }, { "name": "psr/log", @@ -709,19 +707,20 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "2.5.1", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "6731851d6aaf1d0d6c58feff1065227b7fda3ba8" + "reference": "fb72ed32f8418db5e7770be1653e62e0d6f5dd3d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6731851d6aaf1d0d6c58feff1065227b7fda3ba8", - "reference": "6731851d6aaf1d0d6c58feff1065227b7fda3ba8", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/fb72ed32f8418db5e7770be1653e62e0d6f5dd3d", + "reference": "fb72ed32f8418db5e7770be1653e62e0d6f5dd3d", "shasum": "" }, "require": { + "ext-simplexml": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", "php": ">=5.1.2" @@ -782,20 +781,20 @@ "phpcs", "standards" ], - "time": "2016-01-19 23:39:10" + "time": "2016-05-30 22:24:32" }, { "name": "symfony/config", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "79a97025f7bf4bbf8352b5df1905aa136a531066" + "reference": "048dc47e07f92333203c3b7045868bbc864fc40e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/79a97025f7bf4bbf8352b5df1905aa136a531066", - "reference": "79a97025f7bf4bbf8352b5df1905aa136a531066", + "url": "https://api.github.com/repos/symfony/config/zipball/048dc47e07f92333203c3b7045868bbc864fc40e", + "reference": "048dc47e07f92333203c3b7045868bbc864fc40e", "shasum": "" }, "require": { @@ -808,7 +807,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -835,20 +834,20 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2016-02-23 15:16:06" + "time": "2016-05-20 11:48:17" }, { "name": "symfony/console", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04" + "reference": "f62db5b8afec27073a4609b8c84b1f9936652259" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/2ed5e2706ce92313d120b8fe50d1063bcfd12e04", - "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04", + "url": "https://api.github.com/repos/symfony/console/zipball/f62db5b8afec27073a4609b8c84b1f9936652259", + "reference": "f62db5b8afec27073a4609b8c84b1f9936652259", "shasum": "" }, "require": { @@ -868,7 +867,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -895,20 +894,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2016-02-28 16:24:34" + "time": "2016-05-30 06:58:39" }, { "name": "symfony/dependency-injection", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "821800ae6753b88dab55a7280811d8734b8112bf" + "reference": "383110341e8f47ae972da3a29503b099831549e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/821800ae6753b88dab55a7280811d8734b8112bf", - "reference": "821800ae6753b88dab55a7280811d8734b8112bf", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/383110341e8f47ae972da3a29503b099831549e1", + "reference": "383110341e8f47ae972da3a29503b099831549e1", "shasum": "" }, "require": { @@ -921,13 +920,14 @@ }, "suggest": { "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -954,20 +954,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2016-02-28 16:50:08" + "time": "2016-05-24 10:06:56" }, { "name": "symfony/event-dispatcher", - "version": "v2.8.3", + "version": "v2.8.6", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "78c468665c9568c3faaa9c416a7134308f2d85c3" + "reference": "a158f13992a3147d466af7a23b564ac719a4ddd8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/78c468665c9568c3faaa9c416a7134308f2d85c3", - "reference": "78c468665c9568c3faaa9c416a7134308f2d85c3", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a158f13992a3147d466af7a23b564ac719a4ddd8", + "reference": "a158f13992a3147d466af7a23b564ac719a4ddd8", "shasum": "" }, "require": { @@ -1014,20 +1014,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2016-01-27 05:14:19" + "time": "2016-05-03 18:59:18" }, { "name": "symfony/filesystem", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "23ae8f9648d0a7fe94a47c8e20e5bf37c489a451" + "reference": "5751e80d6f94b7c018f338a4a7be0b700d6f3058" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/23ae8f9648d0a7fe94a47c8e20e5bf37c489a451", - "reference": "23ae8f9648d0a7fe94a47c8e20e5bf37c489a451", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/5751e80d6f94b7c018f338a4a7be0b700d6f3058", + "reference": "5751e80d6f94b7c018f338a4a7be0b700d6f3058", "shasum": "" }, "require": { @@ -1036,7 +1036,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -1063,20 +1063,20 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2016-02-23 15:16:06" + "time": "2016-04-12 18:27:47" }, { "name": "symfony/finder", - "version": "v2.8.3", + "version": "v2.8.6", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "877bb4b16ea573cc8c024e9590888fcf7eb7e0f7" + "reference": "ca24cf2cd4e3826f571e0067e535758e73807aa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/877bb4b16ea573cc8c024e9590888fcf7eb7e0f7", - "reference": "877bb4b16ea573cc8c024e9590888fcf7eb7e0f7", + "url": "https://api.github.com/repos/symfony/finder/zipball/ca24cf2cd4e3826f571e0067e535758e73807aa1", + "reference": "ca24cf2cd4e3826f571e0067e535758e73807aa1", "shasum": "" }, "require": { @@ -1112,20 +1112,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2016-02-22 16:12:45" + "time": "2016-03-10 10:53:53" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.1.1", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "1289d16209491b584839022f29257ad859b8532d" + "reference": "dff51f72b0706335131b00a7f49606168c582594" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d", - "reference": "1289d16209491b584839022f29257ad859b8532d", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/dff51f72b0706335131b00a7f49606168c582594", + "reference": "dff51f72b0706335131b00a7f49606168c582594", "shasum": "" }, "require": { @@ -1137,7 +1137,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "1.2-dev" } }, "autoload": { @@ -1171,20 +1171,20 @@ "portable", "shim" ], - "time": "2016-01-20 09:13:37" + "time": "2016-05-18 14:26:46" }, { "name": "symfony/stopwatch", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "4a204804952ff267ace88cf499e0b4bb302a475e" + "reference": "4670f122fa32a4900003a6802f6b8575f3f0b17e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4a204804952ff267ace88cf499e0b4bb302a475e", - "reference": "4a204804952ff267ace88cf499e0b4bb302a475e", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4670f122fa32a4900003a6802f6b8575f3f0b17e", + "reference": "4670f122fa32a4900003a6802f6b8575f3f0b17e", "shasum": "" }, "require": { @@ -1193,7 +1193,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -1220,20 +1220,20 @@ ], "description": "Symfony Stopwatch Component", "homepage": "https://symfony.com", - "time": "2016-01-03 15:35:16" + "time": "2016-03-04 07:56:56" }, { "name": "symfony/yaml", - "version": "v3.0.3", + "version": "v3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c" + "reference": "eca51b7b65eb9be6af88ad7cc91685f1556f5c9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/b5ba64cd67ecd6887f63868fa781ca094bd1377c", - "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c", + "url": "https://api.github.com/repos/symfony/yaml/zipball/eca51b7b65eb9be6af88ad7cc91685f1556f5c9a", + "reference": "eca51b7b65eb9be6af88ad7cc91685f1556f5c9a", "shasum": "" }, "require": { @@ -1242,7 +1242,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -1269,7 +1269,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2016-02-23 15:16:06" + "time": "2016-05-26 21:46:24" }, { "name": "wp-cli/php-cli-tools", From 19c715c6deb5f36cf2a5bcc94622de2d0a2dbceb Mon Sep 17 00:00:00 2001 From: I Date: Wed, 8 Jun 2016 11:02:13 +0200 Subject: [PATCH 4/4] Getting ready fro version 1.1.8. --- CHANGELOG.md | 7 ++++++- composer.json | 2 +- composer.lock | 34 +++++++++++++++++----------------- package.json | 2 +- src/Gateway.php | 2 +- src/Util.php | 2 +- 6 files changed, 27 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f0e8ce..ef24d7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C ## [Unreleased][unreleased] - +## [1.1.8] - 2016-06-08 +- Simplified the gateay payment start function. + ## [1.1.7] - 2016-03-24 - Fixed issue with dynamic order_id. @@ -44,7 +47,9 @@ This projects adheres to [Semantic Versioning](http://semver.org/) and [Keep a C ## 1.0.0 - 2015-01-19 - First release. -[unreleased]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.6...HEAD +[unreleased]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.8...HEAD +[1.1.8]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.7...1.1.8 +[1.1.7]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.6...1.1.7 [1.1.6]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.5...1.1.6 [1.1.5]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.4...1.1.5 [1.1.4]: https://github.com/wp-pay-gateways/omnikassa/compare/1.1.3...1.1.4 diff --git a/composer.json b/composer.json index 76b3d7e..21c4ee8 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "require": { "php": ">=5.2.4", "xrstf/composer-php52": "1.*", - "wp-pay/core": "^1.3.5", + "wp-pay/core": "^1.3.7", "wp-pay-gateways/common": "^1.0.2" }, "require-dev": { diff --git a/composer.lock b/composer.lock index 8e2a9b5..51fe366 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,8 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "87e327c37005b8a2b66ff1f7e42de8f1", - "content-hash": "055a885dffdc70ff9bf154a7c1c83b06", + "hash": "4b3ecd13ce225875104e6489f783f305", + "content-hash": "dd12a37fd9a6c3829c57e1b3b8593012", "packages": [ { "name": "wp-pay-gateways/common", @@ -71,16 +71,16 @@ }, { "name": "wp-pay/core", - "version": "1.3.6", + "version": "1.3.7", "source": { "type": "git", "url": "https://github.com/wp-pay/core.git", - "reference": "99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19" + "reference": "e811cbad1a81d45bb7d69dfddf1a8053bd309e85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-pay/core/zipball/99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19", - "reference": "99c95cf8ed4de00eaf067b66ea7b6c5cc54abb19", + "url": "https://api.github.com/repos/wp-pay/core/zipball/e811cbad1a81d45bb7d69dfddf1a8053bd309e85", + "reference": "e811cbad1a81d45bb7d69dfddf1a8053bd309e85", "shasum": "" }, "require": { @@ -127,7 +127,7 @@ "wordpress", "wp" ], - "time": "2016-04-29 11:49:09" + "time": "2016-06-08 07:53:02" }, { "name": "xrstf/composer-php52", @@ -958,16 +958,16 @@ }, { "name": "symfony/event-dispatcher", - "version": "v2.8.6", + "version": "v2.8.7", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "a158f13992a3147d466af7a23b564ac719a4ddd8" + "reference": "2a6b8713f8bdb582058cfda463527f195b066110" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a158f13992a3147d466af7a23b564ac719a4ddd8", - "reference": "a158f13992a3147d466af7a23b564ac719a4ddd8", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2a6b8713f8bdb582058cfda463527f195b066110", + "reference": "2a6b8713f8bdb582058cfda463527f195b066110", "shasum": "" }, "require": { @@ -1014,7 +1014,7 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2016-05-03 18:59:18" + "time": "2016-06-06 11:11:27" }, { "name": "symfony/filesystem", @@ -1067,16 +1067,16 @@ }, { "name": "symfony/finder", - "version": "v2.8.6", + "version": "v2.8.7", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "ca24cf2cd4e3826f571e0067e535758e73807aa1" + "reference": "3ec095fab1800222732ca522a95dce8fa124007b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/ca24cf2cd4e3826f571e0067e535758e73807aa1", - "reference": "ca24cf2cd4e3826f571e0067e535758e73807aa1", + "url": "https://api.github.com/repos/symfony/finder/zipball/3ec095fab1800222732ca522a95dce8fa124007b", + "reference": "3ec095fab1800222732ca522a95dce8fa124007b", "shasum": "" }, "require": { @@ -1112,7 +1112,7 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2016-03-10 10:53:53" + "time": "2016-06-06 11:11:27" }, { "name": "symfony/polyfill-mbstring", diff --git a/package.json b/package.json index 80796bb..068d7cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "omnikassa", - "version": "1.1.7", + "version": "1.1.8", "description": "OmniKassa driver for the WordPress payment processing library.", "repository": { "type": "git", diff --git a/src/Gateway.php b/src/Gateway.php index cfa0a38..7990727 100644 --- a/src/Gateway.php +++ b/src/Gateway.php @@ -7,7 +7,7 @@ * Company: Pronamic * * @author Remco Tolsma - * @version 1.1.7 + * @version 1.1.8 * @since 1.0.0 */ class Pronamic_WP_Pay_Gateways_OmniKassa_Gateway extends Pronamic_WP_Pay_Gateway { diff --git a/src/Util.php b/src/Util.php index fc92a1c..6c418d0 100644 --- a/src/Util.php +++ b/src/Util.php @@ -7,7 +7,7 @@ * Company: Pronamic * * @author ReĆ¼el van der Steege - * @version 1.1.6 + * @version 1.1.8 * @since 1.1.6 */ class Pronamic_WP_Pay_Gateways_OmniKassa_Util {