@@ -30,33 +30,33 @@ Laravel IMAP is an easy way to integrate the native php imap library into your *
3030
3131## Installation
3232
33- 1 . Install the php-imap library if it isn't already installed:
33+ 1 ) Install the php-imap library if it isn't already installed:
3434
3535``` shell
3636sudo apt-get install php* -imap && sudo apache2ctl graceful
3737```
3838
3939You might also want to check ` phpinfo() ` if the extension is enabled.
4040
41- 2 . Now install the Laravel IMAP package by running the following command:
41+ 2 ) Now install the Laravel IMAP package by running the following command:
4242
4343``` shell
4444composer require webklex/laravel-imap
4545```
4646
47- 3 . Open your ` config/app.php ` file and add the following to the ` providers ` array:
47+ 3 ) Open your ` config/app.php ` file and add the following to the ` providers ` array:
4848
4949``` php
5050Webklex\IMAP\Providers\LaravelServiceProvider::class,
5151```
5252
53- 4 . In the same ` config/app.php ` file add the following to the ` aliases ` array:
53+ 4 ) In the same ` config/app.php ` file add the following to the ` aliases ` array:
5454
5555``` php
5656'Client' => Webklex\IMAP\Facades\Client::class,
5757```
5858
59- 5 . Run the command below to publish the package config file [ config/imap.php] ( src/config/imap.php ) :
59+ 5 ) Run the command below to publish the package config file [ config/imap.php] ( src/config/imap.php ) :
6060
6161``` shell
6262php artisan vendor:publish
@@ -429,4 +429,4 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
429429[ link-downloads ] : https://packagist.org/packages/Webklex/laravel-imap
430430[ link-author ] : https://github.com/webklex
431431[ link-contributors ] : https://github.com/Webklex/laravel-imap/graphs/contributors
432- [ link-jetbrains ] : https://www.jetbrains.com
432+ [ link-jetbrains ] : https://www.jetbrains.com
0 commit comments