Skip to content

Commit 55d955e

Browse files
authoredJan 8, 2019
Update README.md
·
3.7.03.0.1
1 parent 2a29998 commit 55d955e

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed
 

‎README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,20 @@ Version `3.0` and onwards supports Omnipay 3.0 and Laravel 5.4 (note 5.5+ haven'
2727

2828
Include the laravel-omnipay package as a dependency in your `composer.json`:
2929

30-
"ignited/laravel-omnipay": "3.*"
30+
composer require ignited/laravel-omnipay "3.*"
3131

3232
**Note:** You don't need to include the `omnipay/common` in your composer.json - it is a requirement of the `laravel-omnipay` package.
3333

3434
Omnipay recently went refactoring that made it so that each package is now a seperate repository. The `omnipay/common` package includes the core framework. You will then need to include each gateway as you require. For example:
3535

36-
"omnipay/eway": "*"
36+
composer require omnipay/eway "3.*"
3737

3838
Alternatively you can include every gateway by requring:
3939

40-
"omnipay/omnipay": "*"
40+
composer require omnipay/omnipay "3.*"
4141

4242
**Note:** this requires a large amount of composer work as it needs to fetch each seperate repository. This is not recommended.
4343

44-
### Installation
45-
46-
Run `composer install` to download the dependencies.
47-
4844
#### Laravel 5
4945

5046
Add a ServiceProvider to your providers array in `config/app.php`:

0 commit comments

Comments
 (0)
Please sign in to comment.