From 2b39318ff8a67b92e449661508f0ce2a3809041c Mon Sep 17 00:00:00 2001 From: mahdi khanzadi Date: Mon, 15 Jun 2020 23:21:48 +0430 Subject: [PATCH] update docs --- README-FA.md | 20 ++-- README-ZH.md | 22 ++--- README.md | 22 ++--- composer.lock | 247 +++++++++++++++++++++++++++++++------------------- 4 files changed, 184 insertions(+), 127 deletions(-) diff --git a/README-FA.md b/README-FA.md index cc94e5c..bf6c4b7 100644 --- a/README-FA.md +++ b/README-FA.md @@ -156,7 +156,7 @@ $ composer require shetabit/payment ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; ... // Create new invoice. @@ -201,7 +201,7 @@ $invoice->detail('detailName1','your detail1 goes here') ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -237,7 +237,7 @@ Payment::callbackUrl('http://yoursite.com/verify')->purchase( ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -280,7 +280,7 @@ return Payment::purchase( ```php // At the top of the file. use Shetabit\Payment\Facade\Payment; -use Shetabit\Payment\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; ... // You need to verify the payment to ensure the invoice has been paid successfully. @@ -335,9 +335,9 @@ try { ```php namespace App\Packages\PaymentDriver; -use Shetabit\Payment\Abstracts\Driver; -use Shetabit\Payment\Exceptions\InvalidPaymentException; -use Shetabit\Payment\{Contracts\ReceiptInterface, Invoice, Receipt}; +use Shetabit\Multipay\Abstracts\Driver; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\{Contracts\ReceiptInterface, Invoice, Receipt}; class MyDriver extends Driver { @@ -421,7 +421,7 @@ class MyDriver extends Driver ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -445,7 +445,7 @@ class MyDriver extends Driver ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -466,7 +466,7 @@ class MyDriver extends Driver ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... diff --git a/README-ZH.md b/README-ZH.md index 73c6f8b..bdefc0a 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -152,7 +152,7 @@ b. 然后运行 `php artisan vendor:publish` 来发布 `config/payment.php` 文 ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; ... // Create new invoice. @@ -192,7 +192,7 @@ $invoice->detail('detailName1','your detail1 goes here') ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -224,7 +224,7 @@ Payment::callbackUrl('http://yoursite.com/verify')->purchase( ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -262,7 +262,7 @@ return Payment::purchase( ```php // At the top of the file. use Shetabit\Payment\Facade\Payment; -use Shetabit\Payment\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; ... // 您需要验证支付机构的回传数据,以确保付款成功 @@ -293,7 +293,7 @@ getMessage方法,返回可在用户界面中使用的适当消息。 ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -313,7 +313,7 @@ getMessage方法,返回可在用户界面中使用的适当消息。 ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -330,7 +330,7 @@ getMessage方法,返回可在用户界面中使用的适当消息。 ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -350,7 +350,7 @@ getMessage方法,返回可在用户界面中使用的适当消息。 ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -395,9 +395,9 @@ getMessage方法,返回可在用户界面中使用的适当消息。 ```php namespace App\Packages\PaymentDriver; -use Shetabit\Payment\Abstracts\Driver; -use Shetabit\Payment\Exceptions\InvalidPaymentException; -use Shetabit\Payment\{Contracts\ReceiptInterface, Invoice, Receipt}; +use Shetabit\Multipay\Abstracts\Driver; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\{Contracts\ReceiptInterface, Invoice, Receipt}; class MyDriver extends Driver { diff --git a/README.md b/README.md index b3c0eeb..eefb3bc 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ In your code, use it like the below: ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; ... // Create new invoice. @@ -191,7 +191,7 @@ We purchase the invoice to retrieve transaction id: ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -223,7 +223,7 @@ After purchasing the invoice, we can redirect the user to the bank payment page: ```php // At the top of the file. -use Shetabit\Payment\Invoice; +use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -261,7 +261,7 @@ When user has completed the payment, the bank redirects them to your website, th ```php // At the top of the file. use Shetabit\Payment\Facade\Payment; -use Shetabit\Payment\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; ... // You need to verify the payment to ensure the invoice has been paid successfully. @@ -290,7 +290,7 @@ try { ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -310,7 +310,7 @@ try { ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -327,7 +327,7 @@ try { ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -347,7 +347,7 @@ try { ```php // At the top of the file. - use Shetabit\Payment\Invoice; + use Shetabit\Multipay\Invoice; use Shetabit\Payment\Facade\Payment; ... @@ -392,9 +392,9 @@ Eg. You created a class: `App\Packages\PaymentDriver\MyDriver`. ```php namespace App\Packages\PaymentDriver; -use Shetabit\Payment\Abstracts\Driver; -use Shetabit\Payment\Exceptions\InvalidPaymentException; -use Shetabit\Payment\{Contracts\ReceiptInterface, Invoice, Receipt}; +use Shetabit\Multipay\Abstracts\Driver; +use Shetabit\Multipay\Exceptions\InvalidPaymentException; +use Shetabit\Multipay\{Contracts\ReceiptInterface, Invoice, Receipt}; class MyDriver extends Driver { diff --git a/composer.lock b/composer.lock index 8c3dfc5..ae36b62 100644 --- a/composer.lock +++ b/composer.lock @@ -1602,16 +1602,16 @@ }, { "name": "shetabit/multipay", - "version": "v1.0", + "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/shetabit/multipay.git", - "reference": "9b8ddc50e5f312843790c2a455471b781caac2cc" + "reference": "ff46a89093807f377bb02346729927c9f7a8e4d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/shetabit/multipay/zipball/9b8ddc50e5f312843790c2a455471b781caac2cc", - "reference": "9b8ddc50e5f312843790c2a455471b781caac2cc", + "url": "https://api.github.com/repos/shetabit/multipay/zipball/ff46a89093807f377bb02346729927c9f7a8e4d5", + "reference": "ff46a89093807f377bb02346729927c9f7a8e4d5", "shasum": "" }, "require": { @@ -1715,7 +1715,7 @@ "zarinpal", "zarinpal payment gateway" ], - "time": "2020-06-13T17:43:16+00:00" + "time": "2020-06-15T18:19:38+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -1781,16 +1781,16 @@ }, { "name": "symfony/console", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0f0a271bc9b7d02a053d36fcdcb12662e2a8096e" + "reference": "34ac555a3627e324b660e318daa07572e1140123" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0f0a271bc9b7d02a053d36fcdcb12662e2a8096e", - "reference": "0f0a271bc9b7d02a053d36fcdcb12662e2a8096e", + "url": "https://api.github.com/repos/symfony/console/zipball/34ac555a3627e324b660e318daa07572e1140123", + "reference": "34ac555a3627e324b660e318daa07572e1140123", "shasum": "" }, "require": { @@ -1870,11 +1870,11 @@ "type": "tidelift" } ], - "time": "2020-06-07T19:47:44+00:00" + "time": "2020-06-15T12:59:21+00:00" }, { "name": "symfony/css-selector", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -2001,7 +2001,7 @@ }, { "name": "symfony/error-handler", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", @@ -2072,7 +2072,7 @@ }, { "name": "symfony/event-dispatcher", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", @@ -2230,7 +2230,7 @@ }, { "name": "symfony/finder", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", @@ -2293,16 +2293,16 @@ }, { "name": "symfony/http-foundation", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa" + "reference": "f93055171b847915225bd5b0a5792888419d8d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa", - "reference": "e0d853bddc2b2cfb0d67b0b4496c03fffe1d37fa", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f93055171b847915225bd5b0a5792888419d8d75", + "reference": "f93055171b847915225bd5b0a5792888419d8d75", "shasum": "" }, "require": { @@ -2364,20 +2364,20 @@ "type": "tidelift" } ], - "time": "2020-05-24T12:18:07+00:00" + "time": "2020-06-15T06:52:54+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "1151e5d51a680b22e758d05c6647dd9857503ec8" + "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1151e5d51a680b22e758d05c6647dd9857503ec8", - "reference": "1151e5d51a680b22e758d05c6647dd9857503ec8", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a18c27ace1ef344ffcb129a5b089bad7643b387a", + "reference": "a18c27ace1ef344ffcb129a5b089bad7643b387a", "shasum": "" }, "require": { @@ -2477,11 +2477,11 @@ "type": "tidelift" } ], - "time": "2020-06-12T11:25:56+00:00" + "time": "2020-06-15T13:51:38+00:00" }, { "name": "symfony/mime", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", @@ -3220,7 +3220,7 @@ }, { "name": "symfony/process", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/process.git", @@ -3284,7 +3284,7 @@ }, { "name": "symfony/routing", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", @@ -3448,7 +3448,7 @@ }, { "name": "symfony/string", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/string.git", @@ -3533,7 +3533,7 @@ }, { "name": "symfony/translation", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", @@ -3696,7 +3696,7 @@ }, { "name": "symfony/var-dumper", - "version": "v5.1.1", + "version": "v5.1.2", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", @@ -4780,16 +4780,16 @@ }, { "name": "phpunit/php-file-iterator", - "version": "3.0.1", + "version": "3.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "4ac5b3e13df14829daa60a2eb4fdd2f2b7d33cf4" + "reference": "eba15e538f2bb3fe018b7bbb47d2fe32d404bfd2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4ac5b3e13df14829daa60a2eb4fdd2f2b7d33cf4", - "reference": "4ac5b3e13df14829daa60a2eb4fdd2f2b7d33cf4", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/eba15e538f2bb3fe018b7bbb47d2fe32d404bfd2", + "reference": "eba15e538f2bb3fe018b7bbb47d2fe32d404bfd2", "shasum": "" }, "require": { @@ -4832,20 +4832,20 @@ "type": "github" } ], - "time": "2020-04-18T05:02:12+00:00" + "time": "2020-06-15T12:54:35+00:00" }, { "name": "phpunit/php-invoker", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "7579d5a1ba7f3ac11c80004d205877911315ae7a" + "reference": "62f696ad0d140e0e513e69eaafdebb674d622b4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/7579d5a1ba7f3ac11c80004d205877911315ae7a", - "reference": "7579d5a1ba7f3ac11c80004d205877911315ae7a", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/62f696ad0d140e0e513e69eaafdebb674d622b4c", + "reference": "62f696ad0d140e0e513e69eaafdebb674d622b4c", "shasum": "" }, "require": { @@ -4885,25 +4885,34 @@ "keywords": [ "process" ], - "time": "2020-02-07T06:06:11+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:10:07+00:00" }, { "name": "phpunit/php-text-template", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "526dc996cc0ebdfa428cd2dfccd79b7b53fee346" + "reference": "0c69cbf965d5317ba33f24a352539f354a25db09" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/526dc996cc0ebdfa428cd2dfccd79b7b53fee346", - "reference": "526dc996cc0ebdfa428cd2dfccd79b7b53fee346", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c69cbf965d5317ba33f24a352539f354a25db09", + "reference": "0c69cbf965d5317ba33f24a352539f354a25db09", "shasum": "" }, "require": { "php": "^7.3" }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, "type": "library", "extra": { "branch-alias": { @@ -4931,7 +4940,13 @@ "keywords": [ "template" ], - "time": "2020-02-01T07:43:44+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T12:52:43+00:00" }, { "name": "phpunit/php-timer", @@ -5045,16 +5060,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.2.2", + "version": "9.2.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "8fd0d8f80029682da89516a554f4d5f5a030345c" + "reference": "c1b1d62095ef78427f112a7a1c1502d4607e3c00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8fd0d8f80029682da89516a554f4d5f5a030345c", - "reference": "8fd0d8f80029682da89516a554f4d5f5a030345c", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c1b1d62095ef78427f112a7a1c1502d4607e3c00", + "reference": "c1b1d62095ef78427f112a7a1c1502d4607e3c00", "shasum": "" }, "require": { @@ -5139,20 +5154,20 @@ "type": "github" } ], - "time": "2020-06-07T14:14:21+00:00" + "time": "2020-06-15T10:51:34+00:00" }, { "name": "sebastian/code-unit", - "version": "1.0.2", + "version": "1.0.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "ac958085bc19fcd1d36425c781ef4cbb5b06e2a5" + "reference": "d650ef9b1fece15ed4d6eaed6e6b469b7b81183a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ac958085bc19fcd1d36425c781ef4cbb5b06e2a5", - "reference": "ac958085bc19fcd1d36425c781ef4cbb5b06e2a5", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/d650ef9b1fece15ed4d6eaed6e6b469b7b81183a", + "reference": "d650ef9b1fece15ed4d6eaed6e6b469b7b81183a", "shasum": "" }, "require": { @@ -5191,20 +5206,20 @@ "type": "github" } ], - "time": "2020-04-30T05:58:10+00:00" + "time": "2020-06-15T13:11:26+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "5b5dbe0044085ac41df47e79d34911a15b96d82e" + "reference": "c771130f0e8669104a4320b7101a81c2cc2963ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5b5dbe0044085ac41df47e79d34911a15b96d82e", - "reference": "5b5dbe0044085ac41df47e79d34911a15b96d82e", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c771130f0e8669104a4320b7101a81c2cc2963ef", + "reference": "c771130f0e8669104a4320b7101a81c2cc2963ef", "shasum": "" }, "require": { @@ -5236,20 +5251,26 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2020-02-07T06:20:13+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T12:56:39+00:00" }, { "name": "sebastian/comparator", - "version": "4.0.0", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "85b3435da967696ed618ff745f32be3ff4a2b8e8" + "reference": "266d85ef789da8c41f06af4093c43e9798af2784" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85b3435da967696ed618ff745f32be3ff4a2b8e8", - "reference": "85b3435da967696ed618ff745f32be3ff4a2b8e8", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/266d85ef789da8c41f06af4093c43e9798af2784", + "reference": "266d85ef789da8c41f06af4093c43e9798af2784", "shasum": "" }, "require": { @@ -5300,7 +5321,13 @@ "compare", "equality" ], - "time": "2020-02-07T06:08:51+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T15:04:48+00:00" }, { "name": "sebastian/diff", @@ -5366,16 +5393,16 @@ }, { "name": "sebastian/environment", - "version": "5.1.0", + "version": "5.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "c753f04d68cd489b6973cf9b4e505e191af3b05c" + "reference": "16eb0fa43e29c33d7f2117ed23072e26fc5ab34e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/c753f04d68cd489b6973cf9b4e505e191af3b05c", - "reference": "c753f04d68cd489b6973cf9b4e505e191af3b05c", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/16eb0fa43e29c33d7f2117ed23072e26fc5ab34e", + "reference": "16eb0fa43e29c33d7f2117ed23072e26fc5ab34e", "shasum": "" }, "require": { @@ -5421,20 +5448,20 @@ "type": "github" } ], - "time": "2020-04-14T13:36:52+00:00" + "time": "2020-06-15T13:00:01+00:00" }, { "name": "sebastian/exporter", - "version": "4.0.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "80c26562e964016538f832f305b2286e1ec29566" + "reference": "d12fbca85da932d01d941b59e4b71a0d559db091" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/80c26562e964016538f832f305b2286e1ec29566", - "reference": "80c26562e964016538f832f305b2286e1ec29566", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d12fbca85da932d01d941b59e4b71a0d559db091", + "reference": "d12fbca85da932d01d941b59e4b71a0d559db091", "shasum": "" }, "require": { @@ -5488,7 +5515,13 @@ "export", "exporter" ], - "time": "2020-02-07T06:10:52+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:12:44+00:00" }, { "name": "sebastian/global-state", @@ -5546,16 +5579,16 @@ }, { "name": "sebastian/object-enumerator", - "version": "4.0.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "e67516b175550abad905dc952f43285957ef4363" + "reference": "15f319d67c49fc55ebcdbffb3377433125588455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67516b175550abad905dc952f43285957ef4363", - "reference": "e67516b175550abad905dc952f43285957ef4363", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/15f319d67c49fc55ebcdbffb3377433125588455", + "reference": "15f319d67c49fc55ebcdbffb3377433125588455", "shasum": "" }, "require": { @@ -5589,20 +5622,26 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2020-02-07T06:12:23+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:15:25+00:00" }, { "name": "sebastian/object-reflector", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "f4fd0835cabb0d4a6546d9fe291e5740037aa1e7" + "reference": "14e04b3c25b821cc0702d4837803fe497680b062" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/f4fd0835cabb0d4a6546d9fe291e5740037aa1e7", - "reference": "f4fd0835cabb0d4a6546d9fe291e5740037aa1e7", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/14e04b3c25b821cc0702d4837803fe497680b062", + "reference": "14e04b3c25b821cc0702d4837803fe497680b062", "shasum": "" }, "require": { @@ -5634,20 +5673,26 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "time": "2020-02-07T06:19:40+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:08:02+00:00" }, { "name": "sebastian/recursion-context", - "version": "4.0.0", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cdd86616411fc3062368b720b0425de10bd3d579" + "reference": "a32789e5f0157c10cf216ce6c5136db12a12b847" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cdd86616411fc3062368b720b0425de10bd3d579", - "reference": "cdd86616411fc3062368b720b0425de10bd3d579", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/a32789e5f0157c10cf216ce6c5136db12a12b847", + "reference": "a32789e5f0157c10cf216ce6c5136db12a12b847", "shasum": "" }, "require": { @@ -5687,20 +5732,26 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2020-02-07T06:18:20+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:06:44+00:00" }, { "name": "sebastian/resource-operations", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "8c98bf0dfa1f9256d0468b9803a1e1df31b6fa98" + "reference": "71421c1745788de4facae1b79af923650bd3ec15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/8c98bf0dfa1f9256d0468b9803a1e1df31b6fa98", - "reference": "8c98bf0dfa1f9256d0468b9803a1e1df31b6fa98", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/71421c1745788de4facae1b79af923650bd3ec15", + "reference": "71421c1745788de4facae1b79af923650bd3ec15", "shasum": "" }, "require": { @@ -5732,7 +5783,13 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2020-02-07T06:13:02+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-06-15T13:17:14+00:00" }, { "name": "sebastian/type",