Skip to content

Commit bbfc48b

Browse files
committed
chore: update credits
1 parent cd8ff66 commit bbfc48b

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ composer require nextgen-tech/laravel-sequence
1919

2020
```php
2121
use Carbon\Carbon;
22-
use NGT\Laravel\Sequence\Enums\ResetFrequency;
23-
use NGT\Laravel\Sequence\Models\SequenceRule;
24-
use NGT\Laravel\Sequence\SequenceFactory;
22+
use Guava\Sequence\Enums\ResetFrequency;
23+
use Guava\Sequence\Models\SequenceRule;
24+
use Guava\Sequence\SequenceFactory;
2525

2626
/**
2727
* Create new sequence rule. It needs to be done only once.
@@ -60,7 +60,7 @@ $sequence->increment();
6060

6161
## Reset Frequencies
6262

63-
Sequences supports three most commonly used reset frequencies. `\NGT\Laravel\Sequence\Enums\ResetFrequency` class should be used when creating new sequence rule.
63+
Sequences supports three most commonly used reset frequencies. `\Guava\Sequence\Enums\ResetFrequency` class should be used when creating new sequence rule.
6464

6565
* `ResetFrequency::YEARLY` - resets ordinal number at the beginning of new year
6666
* `ResetFrequency::MONTHLY` - resets ordinal number at the beginning of new month
@@ -76,4 +76,9 @@ Sequences supports three most commonly used reset frequencies. `\NGT\Laravel\Seq
7676
| `{year}` | full year of passed date | 2021 |
7777
| `{day_short}` | day of passed date without leading zero | 5 |
7878
| `{month_short}` | month of passed date without leading zero | 3 |
79-
| `{year_short}` | short year of passed date | 21 |
79+
| `{year_short}` | short year of passed date | 21 |
80+
81+
## Credits
82+
This package is a fork of [nextgen-tech/laravel-sequence](https://github.com/nextgen-tech/laravel-sequence)
83+
84+
- Credits to the original author [Krzysztof Grabania](https://github.com/Dartui)

0 commit comments

Comments
 (0)