Skip to content

Commit

Permalink
readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
delower186 committed Sep 9, 2022
1 parent 5747063 commit ac9d1f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ composer require delower186/twocheckout
* Add the service provider to your if Laravel version is below 5.5 `$providers` array in `config/app.php` file like:

```php
TwoCheckout\TwoCheckoutServiceProvider
Delower186\Twocheckout\TwocheckoutServiceProvider
```
```php
TwoCheckout\TwoCheckoutServiceProvider::class
Delower186\Twocheckout\TwocheckoutServiceProvider::class
```

* Add the alias to your `$aliases` array in `config/app.php` file like:

```php
'TwoCheckout' => TwoCheckout\Facades\TwoCheckout
'TwoCheckout' => Delower186\Twocheckout\Facades\Twocheckout
```
```php
'TwoCheckout' => TwoCheckout\Facades\TwoCheckout::class
'TwoCheckout' => Delower186\Twocheckout\Facades\Twocheckout::class
```

* Run the following command to publish configuration:
Expand Down

0 comments on commit ac9d1f1

Please sign in to comment.