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
@@ -22,7 +22,7 @@ is fully unit tested, and even comes with an example application to get you star
22
22
**Important Note: Upgrading from <1.0**
23
23
24
24
If you are upgrading from a pre-1.0 version of Omnipay, please note that the currency format has changed.
25
-
See the [changelog](https://github.com/adrianmacneil/omnipay/blob/master/CHANGELOG.md) for more details.
25
+
See the [changelog](https://github.com/omnipay/omnipay/blob/master/CHANGELOG.md) for more details.
26
26
27
27
## TL;DR
28
28
@@ -83,8 +83,8 @@ And run composer to update your dependencies:
83
83
84
84
## Payment Gateways
85
85
86
-
All payment gateways must implement [GatewayInterface](https://github.com/adrianmacneil/omnipay/blob/master/src/Omnipay/Common/GatewayInterface.php), and will usually
87
-
extend [AbstractGateway](https://github.com/adrianmacneil/omnipay/blob/master/src/Omnipay/Common/AbstractGateway.php) for basic functionality.
86
+
All payment gateways must implement [GatewayInterface](https://github.com/omnipay/omnipay/blob/master/src/Omnipay/Common/GatewayInterface.php), and will usually
87
+
extend [AbstractGateway](https://github.com/omnipay/omnipay/blob/master/src/Omnipay/Common/AbstractGateway.php) for basic functionality.
88
88
89
89
The following gateways are already implemented:
90
90
@@ -152,7 +152,7 @@ gateway (other than by the methods they support).
152
152
153
153
## Credit Card / Payment Form Input
154
154
155
-
User form input is directed to an [CreditCard](https://github.com/adrianmacneil/omnipay/blob/master/src/Omnipay/Common/CreditCard.php)
155
+
User form input is directed to an [CreditCard](https://github.com/omnipay/omnipay/blob/master/src/Omnipay/Common/CreditCard.php)
156
156
object. This provides a safe way to accept user input.
If you submit credit card details which are obviously invalid (missing required fields, or a number
213
-
which fails the Luhn check), [InvalidCreditCardException](https://github.com/adrianmacneil/omnipay/blob/master/src/Omnipay/Common/Exception/InvalidCreditCardException.php)
213
+
which fails the Luhn check), [InvalidCreditCardException](https://github.com/omnipay/omnipay/blob/master/src/Omnipay/Common/Exception/InvalidCreditCardException.php)
214
214
will be thrown. You should validate the card details using your framework's validation library
215
215
before submitting the details to your gateway, to avoid unnecessary API calls.
216
216
@@ -277,7 +277,7 @@ To summarize the various parameters you have available to you:
277
277
278
278
## The Payment Response
279
279
280
-
The payment response must implement [ResponseInterface](https://github.com/adrianmacneil/omnipay/blob/master/src/Omnipay/Common/ResponseInterface.php). There are two main types of response:
280
+
The payment response must implement [ResponseInterface](https://github.com/omnipay/omnipay/blob/master/src/Omnipay/Common/ResponseInterface.php). There are two main types of response:
281
281
282
282
* Payment was successful (standard response)
283
283
* Website requires redirect to off-site payment form (redirect response)
@@ -384,7 +384,7 @@ web server (PHP 5.4+):
384
384
$ php composer.phar update --dev
385
385
$ php -S localhost:8000 -t example/
386
386
387
-
For more information, see the [example application directory](https://github.com/adrianmacneil/omnipay/tree/master/example).
387
+
For more information, see the [example application directory](https://github.com/omnipay/omnipay/tree/master/example).
388
388
389
389
## Support
390
390
@@ -396,7 +396,7 @@ If you want to keep up to date with release anouncements, discuss ideas for the
396
396
or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which
397
397
you can subscribe to.
398
398
399
-
If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/adrianmacneil/omnipay/issues),
399
+
If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/omnipay/omnipay/issues),
400
400
or better yet, fork the library and submit a pull request.
401
401
402
402
## Contributing
@@ -408,7 +408,7 @@ or better yet, fork the library and submit a pull request.
408
408
* Ensure your code is nicely formatted in the [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
409
409
style and that all tests pass.
410
410
* Send the pull request.
411
-
* Check that the [travis build](https://travis-ci.org/adrianmacneil/omnipay) passed. If not, rinse and repeat.
411
+
* Check that the [travis build](https://travis-ci.org/omnipay/omnipay) passed. If not, rinse and repeat.
0 commit comments