You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -27,24 +27,20 @@ Version `3.0` and onwards supports Omnipay 3.0 and Laravel 5.4 (note 5.5+ haven'
27
27
28
28
Include the laravel-omnipay package as a dependency in your `composer.json`:
29
29
30
-
"ignited/laravel-omnipay": "3.*"
30
+
composer require ignited/laravel-omnipay "3.*"
31
31
32
32
**Note:** You don't need to include the `omnipay/common` in your composer.json - it is a requirement of the `laravel-omnipay` package.
33
33
34
34
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:
35
35
36
-
"omnipay/eway": "*"
36
+
composer require omnipay/eway "3.*"
37
37
38
38
Alternatively you can include every gateway by requring:
39
39
40
-
"omnipay/omnipay": "*"
40
+
composer require omnipay/omnipay "3.*"
41
41
42
42
**Note:** this requires a large amount of composer work as it needs to fetch each seperate repository. This is not recommended.
43
43
44
-
### Installation
45
-
46
-
Run `composer install` to download the dependencies.
47
-
48
44
#### Laravel 5
49
45
50
46
Add a ServiceProvider to your providers array in `config/app.php`:
0 commit comments