Skip to content

Commit df939af

Browse files
committed
Update README.md
1 parent f79a14f commit df939af

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**An easy to use, consistent payment processing library for PHP 5.3+**
44

5-
[![Build Status](https://travis-ci.org/adrianmacneil/omnipay.png?branch=master)](https://travis-ci.org/adrianmacneil/omnipay)
5+
[![Build Status](https://travis-ci.org/omnipay/omnipay.png?branch=master)](https://travis-ci.org/omnipay/omnipay)
66
[![Latest Stable Version](https://poser.pugx.org/omnipay/omnipay/version.png)](https://packagist.org/packages/omnipay/omnipay)
77
[![Total Downloads](https://poser.pugx.org/omnipay/omnipay/d/total.png)](https://packagist.org/packages/omnipay/omnipay)
88

@@ -22,7 +22,7 @@ is fully unit tested, and even comes with an example application to get you star
2222
**Important Note: Upgrading from <1.0**
2323

2424
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.
2626

2727
## TL;DR
2828

@@ -83,8 +83,8 @@ And run composer to update your dependencies:
8383

8484
## Payment Gateways
8585

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.
8888

8989
The following gateways are already implemented:
9090

@@ -152,7 +152,7 @@ gateway (other than by the methods they support).
152152

153153
## Credit Card / Payment Form Input
154154

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)
156156
object. This provides a safe way to accept user input.
157157

158158
The `CreditCard` object has the following fields:
@@ -210,7 +210,7 @@ $card->setFirstName('Adrian');
210210
```
211211

212212
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)
214214
will be thrown. You should validate the card details using your framework's validation library
215215
before submitting the details to your gateway, to avoid unnecessary API calls.
216216

@@ -277,7 +277,7 @@ To summarize the various parameters you have available to you:
277277

278278
## The Payment Response
279279

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:
281281

282282
* Payment was successful (standard response)
283283
* Website requires redirect to off-site payment form (redirect response)
@@ -384,7 +384,7 @@ web server (PHP 5.4+):
384384
$ php composer.phar update --dev
385385
$ php -S localhost:8000 -t example/
386386

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).
388388

389389
## Support
390390

@@ -396,7 +396,7 @@ If you want to keep up to date with release anouncements, discuss ideas for the
396396
or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which
397397
you can subscribe to.
398398

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),
400400
or better yet, fork the library and submit a pull request.
401401

402402
## Contributing
@@ -408,7 +408,7 @@ or better yet, fork the library and submit a pull request.
408408
* 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)
409409
style and that all tests pass.
410410
* 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.
412412

413413
## Feedback
414414

0 commit comments

Comments
 (0)