Skip to content

Commit 9a41cce

Browse files
author
Babichev Maxim
committed
update docs
1 parent a4af301 commit 9a41cce

File tree

6 files changed

+41
-25
lines changed

6 files changed

+41
-25
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ laravel-wallet - Easy work with virtual wallet.
2323
* **Vendor**: bavix
2424
* **Package**: laravel-wallet
2525
* **Version**: [![Latest Stable Version](https://poser.pugx.org/bavix/laravel-wallet/v/stable)](https://packagist.org/packages/bavix/laravel-wallet)
26-
* **PHP Version**: 7.1+
26+
* **PHP Version**: 7.2+
2727
* **Laravel Version**: `5.5`, `5.6`, `5.7`, `5.8`, `6.0`
2828
* **[Composer](https://getcomposer.org/):** `composer require bavix/laravel-wallet`
2929

@@ -36,6 +36,7 @@ To perform the migration, you will be [helped by the instruction](https://bavix.
3636
| Extension | Description |
3737
| ----- | ----- |
3838
| [Swap](https://github.com/bavix/laravel-wallet-swap) | Addition to the laravel-wallet library for quick setting of exchange rates |
39+
| [Vacuum](https://github.com/bavix/laravel-wallet-vacuum) | Addition to the laravel-wallet library for quick fix race condition |
3940

4041
### Usage
4142
Add the `HasWallet` trait and `Wallet` interface to model.

docs/_sidebar.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- [Transfer](transfer)
1515
- [Refresh balance](refresh)
1616
- [Confirm](confirm)
17-
<!-- - [Exchange](exchange)-->
17+
- [Exchange](exchange)
1818
- [Withdraw taxing](taxing)
1919

2020
- Purchases
@@ -28,14 +28,15 @@
2828
- Additions
2929

3030
- [Wallet Swap](laravel-wallet-swap)
31+
- [Wallet Vacuum](laravel-wallet-vacuum)
3132

3233
- Multi Wallets
3334

3435
- [New Wallet](new-wallet)
3536
- [Transfer](wallet-transfer)
3637

37-
<!--- Currencies-->
38+
- Currencies
3839

39-
<!-- - [Rate Service](rate)-->
40-
<!-- - [Create Wallet](rate-wallet)-->
41-
<!-- - [Taxing](rate-taxing)-->
40+
- [Rate Service](rate)
41+
- [Create Wallet](rate-wallet)
42+
- [Taxing](rate-taxing)

docs/index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
window.$docsify = {
1515
name: 'Laravel Wallet',
1616
repo: 'bavix/laravel-wallet',
17-
ga: 'UA-98195013-2',
17+
// ga: 'UA-98195013-2',
1818
loadSidebar: true,
1919
loadNavbar: true,
2020
relativePath: true,
@@ -24,23 +24,23 @@
2424
}
2525
</script>
2626
<script src="https://unpkg.com/docsify/lib/docsify.min.js"></script>
27-
<script src="https://unpkg.com/docsify/lib/plugins/ga.min.js"></script>
27+
<!-- <script src="https://unpkg.com/docsify/lib/plugins/ga.min.js"></script>-->
2828
<script src="https://unpkg.com/prismjs/components/prism-bash.min.js"></script>
2929
<script src="https://unpkg.com/prismjs/components/prism-php.min.js"></script>
30-
<!-- Yandex.Metrika counter -->
31-
<script type="text/javascript" >
32-
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
33-
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
34-
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
30+
<!-- &lt;!&ndash; Yandex.Metrika counter &ndash;&gt;-->
31+
<!-- <script type="text/javascript" >-->
32+
<!-- (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};-->
33+
<!-- m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})-->
34+
<!-- (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");-->
3535

36-
ym(54074236, "init", {
37-
clickmap:true,
38-
trackLinks:true,
39-
accurateTrackBounce:true,
40-
webvisor:true
41-
});
42-
</script>
43-
<noscript><div><img src="https://mc.yandex.ru/watch/54074236" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
44-
<!-- /Yandex.Metrika counter -->
36+
<!-- ym(54074236, "init", {-->
37+
<!-- clickmap:true,-->
38+
<!-- trackLinks:true,-->
39+
<!-- accurateTrackBounce:true,-->
40+
<!-- webvisor:true-->
41+
<!-- });-->
42+
<!-- </script>-->
43+
<!-- <noscript><div><img src="https://mc.yandex.ru/watch/54074236" style="position:absolute; left:-9999px;" alt="" /></div></noscript>-->
44+
<!-- &lt;!&ndash; /Yandex.Metrika counter &ndash;&gt;-->
4545
</body>
4646
</html>

docs/requirements.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
## PHP
22
The following versions of PHP are supported:
33

4-
- PHP 7.1
54
- PHP 7.2
65
- PHP 7.3
76

docs/ru/_sidebar.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- [Введение](README)
44
- [Требования](requirements)
55
- [Установка](installation)
6+
- [Lumen installation](lumen)
67
- [Как использовать](basic-usage)
78
- [Обновление](upgrade-guide)
89

@@ -12,15 +13,30 @@
1213
- [Вывод](withdraw)
1314
- [Перевод](transfer)
1415
- [Пересчёт баланса](refresh)
16+
- [Confirm](confirm)
17+
- [Exchange](exchange)
18+
- [Withdraw taxing](taxing)
1519

1620
- Покупки
1721

1822
- [Платеж](payment)
19-
- [Корзина](cart)
2023
- [Купить бесплатно](pay-free)
2124
- [Возврат](refund)
25+
- [Gift](gift)
26+
- [Корзина](cart)
27+
28+
- Additions
29+
30+
- [Wallet Swap](laravel-wallet-swap)
31+
- [Wallet Vacuum](laravel-wallet-vacuum)
2232

2333
- Кошельки
2434

2535
- [Создать кошелек](new-wallet)
2636
- [Перевод](wallet-transfer)
37+
38+
- Currencies
39+
40+
- [Rate Service](rate)
41+
- [Create Wallet](rate-wallet)
42+
- [Taxing](rate-taxing)

docs/ru/requirements.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
## PHP
22
Поддерживаются следующие версии PHP:
33

4-
- PHP 7.1
54
- PHP 7.2
65
- PHP 7.3
76

0 commit comments

Comments
 (0)