Skip to content

Commit 2bf0efe

Browse files
jeffersongoncalvesjdavidbakr
authored andcommitted
Update README.md
Removing $ to make copying the command easier
1 parent d4b4664 commit 2bf0efe

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@ There was a breaking change with the update to version 3.0, specifically regardi
3030
First, upgrade to version 2.2 by running:
3131

3232
```bash
33-
$ composer require jdavidbakr/mail-tracker ~2.2
33+
composer require jdavidbakr/mail-tracker ~2.2
3434
```
3535

3636
If you are updating from an earlier version, you will need to update the config file and run the new migrations. For best results, make a backup copy of config/mail-tracker.php and the views in resources/views/vendor/emailTrackingViews (if they exists) to restore any values you have customized, then delete that file and run
3737

3838
```bash
39-
$ php artisan vendor:publish
40-
$ php artisan migrate
39+
php artisan vendor:publish
40+
```
41+
```bash
42+
php artisan migrate
4143
```
4244

4345
Also note that the migration for the `sent_emails_url_clicked` table changed with version 2.1.13. The change is that the URL column is now a `TEXT` field to allow for longer URLs. If you have an old system you may want to manually change that column; there is no migration included to perform that update.
@@ -47,19 +49,19 @@ Also note that the migration for the `sent_emails_url_clicked` table changed wit
4749
Via Composer
4850

4951
```bash
50-
$ composer require jdavidbakr/mail-tracker
52+
composer require jdavidbakr/mail-tracker
5153
```
5254

5355
Publish the config file and migration
5456

5557
```bash
56-
$ php artisan vendor:publish --provider="jdavidbakr\MailTracker\MailTrackerServiceProvider"
58+
php artisan vendor:publish --provider="jdavidbakr\MailTracker\MailTrackerServiceProvider"
5759
```
5860

5961
Run the migration
6062

6163
```bash
62-
$ php artisan migrate
64+
php artisan migrate
6365
```
6466

6567
Note: If you would like to use a different connection to store your models,

0 commit comments

Comments
 (0)