Skip to content

Commit 3ea21c4

Browse files
committed
Update links
1 parent 1671934 commit 3ea21c4

File tree

2 files changed

+38
-38
lines changed

2 files changed

+38
-38
lines changed

README.md

+36-36
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/omnipay/common.png?branch=master)](https://travis-ci.org/omnipay/common)
5+
[![Build Status](https://travis-ci.org/thephpleague/omnipay-common.png?branch=master)](https://travis-ci.org/thephpleague/omnipay-common)
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

@@ -24,7 +24,7 @@ is fully unit tested, and even comes with an example application to get you star
2424
If you are upgrading from a pre-2.0 version of Omnipay, please note that the
2525
project has now been split into multiple packages. There have also been some
2626
changes to how gateway instances are created. See the
27-
[full release notes](https://github.com/omnipay/omnipay/releases/tag/v2.0.0)
27+
[full release notes](https://github.com/thephpleague/omnipay/releases/tag/v2.0.0)
2828
for more details.
2929

3030
## TL;DR
@@ -58,7 +58,7 @@ as possible the differences between the various payments gateways.
5858
## Package Layout
5959

6060
Omnipay is a collection of packages which all depend on the
61-
[omnipay/common](https://github.com/omnipay/common) package to provide
61+
[omnipay/common](https://github.com/thephpleague/omnipay-common) package to provide
6262
a consistent interface. There are no dependencies on official payment gateway PHP packages -
6363
we prefer to work with the HTTP API directly. Under the hood, we use the popular and powerful
6464
[Guzzle](http://guzzlephp.org/) library to make HTTP requests.
@@ -72,7 +72,7 @@ payment library, a good name for your composer package would be `santa/omnipay-g
7272

7373
If you want to transfer your gateway to the `omnipay` GitHub organization and add it
7474
to the list of officially supported gateways, please open a pull request on the
75-
[omnipay/common](https://github.com/omnipay/common) package. Before new gateways will
75+
[omnipay/common](https://github.com/thephpleague/omnipay-common) package. Before new gateways will
7676
be accepted, they must have 100% unit test code coverage, and follow the conventions
7777
and code style used in other Omnipay gateways.
7878

@@ -106,47 +106,47 @@ Next, run composer to update your dependencies:
106106

107107
## Payment Gateways
108108

109-
All payment gateways must implement [GatewayInterface](https://github.com/omnipay/common/blob/master/src/Omnipay/Common/GatewayInterface.php), and will usually
110-
extend [AbstractGateway](https://github.com/omnipay/common/blob/master/src/Omnipay/Common/AbstractGateway.php) for basic functionality.
109+
All payment gateways must implement [GatewayInterface](https://github.com/thephpleague/omnipay-common/blob/master/src/Omnipay/Common/GatewayInterface.php), and will usually
110+
extend [AbstractGateway](https://github.com/thephpleague/omnipay-common/blob/master/src/Omnipay/Common/AbstractGateway.php) for basic functionality.
111111

112112
The following gateways are available:
113113

114114
Gateway | Composer Package | Maintainer
115115
--- | --- | ---
116-
[2Checkout](https://github.com/omnipay/2checkout) | omnipay/twocheckout | [Adrian Macneil](https://github.com/adrianmacneil)
116+
[2Checkout](https://github.com/thephpleague/omnipay-2checkout) | omnipay/twocheckout | [Adrian Macneil](https://github.com/adrianmacneil)
117117
[Alipay](https://github.com/lokielse/omnipay-alipay) | lokielse/omnipay-alipay | [Loki Else](https://github.com/lokielse)
118-
[Authorize.Net](https://github.com/omnipay/authorizenet) | omnipay/authorizenet | [Adrian Macneil](https://github.com/adrianmacneil)
119-
[Buckaroo](https://github.com/omnipay/buckaroo) | omnipay/buckaroo | [Adrian Macneil](https://github.com/adrianmacneil)
120-
[CardSave](https://github.com/omnipay/cardsave) | omnipay/cardsave | [Adrian Macneil](https://github.com/adrianmacneil)
121-
[Coinbase](https://github.com/omnipay/coinbase) | omnipay/coinbase | [Adrian Macneil](https://github.com/adrianmacneil)
118+
[Authorize.Net](https://github.com/thephpleague/omnipay-authorizenet) | omnipay/authorizenet | [Adrian Macneil](https://github.com/adrianmacneil)
119+
[Buckaroo](https://github.com/thephpleague/omnipay-buckaroo) | omnipay/buckaroo | [Adrian Macneil](https://github.com/adrianmacneil)
120+
[CardSave](https://github.com/thephpleague/omnipay-cardsave) | omnipay/cardsave | [Adrian Macneil](https://github.com/adrianmacneil)
121+
[Coinbase](https://github.com/thephpleague/omnipay-coinbase) | omnipay/coinbase | [Adrian Macneil](https://github.com/adrianmacneil)
122122
[DataCash](https://github.com/coatesap/omnipay-datacash) | coatesap/omnipay-datacash | [Andrew Coates](https://github.com/coatesap)
123-
[Dummy](https://github.com/omnipay/dummy) | omnipay/dummy | [Adrian Macneil](https://github.com/adrianmacneil)
124-
[eWAY](https://github.com/omnipay/eway) | omnipay/eway | [Adrian Macneil](https://github.com/adrianmacneil)
125-
[First Data](https://github.com/omnipay/firstdata) | omnipay/firstdata | [Andrew Coates](https://github.com/coatesap)
126-
[GoCardless](https://github.com/omnipay/gocardless) | omnipay/gocardless | [Adrian Macneil](https://github.com/adrianmacneil)
127-
[Manual](https://github.com/omnipay/manual) | omnipay/manual | [Adrian Macneil](https://github.com/adrianmacneil)
128-
[Migs](https://github.com/omnipay/migs) | omnipay/migs | [Adrian Macneil](https://github.com/adrianmacneil)
129-
[Mollie](https://github.com/omnipay/mollie) | omnipay/mollie | [Adrian Macneil](https://github.com/adrianmacneil)
130-
[MultiSafepay](https://github.com/omnipay/multisafepay) | omnipay/multisafepay | [Alexander Deruwe](https://github.com/aderuwe)
131-
[Netaxept (BBS)](https://github.com/omnipay/netaxept) | omnipay/netaxept | [Adrian Macneil](https://github.com/adrianmacneil)
132-
[Netbanx](https://github.com/omnipay/netbanx) | omnipay/netbanx | [Maks Rafalko](https://github.com/borNfreee)
123+
[Dummy](https://github.com/thephpleague/omnipay-dummy) | omnipay/dummy | [Adrian Macneil](https://github.com/adrianmacneil)
124+
[eWAY](https://github.com/thephpleague/omnipay-eway) | omnipay/eway | [Adrian Macneil](https://github.com/adrianmacneil)
125+
[First Data](https://github.com/thephpleague/omnipay-firstdata) | omnipay/firstdata | [Andrew Coates](https://github.com/coatesap)
126+
[GoCardless](https://github.com/thephpleague/omnipay-gocardless) | omnipay/gocardless | [Adrian Macneil](https://github.com/adrianmacneil)
127+
[Manual](https://github.com/thephpleague/omnipay-manual) | omnipay/manual | [Adrian Macneil](https://github.com/adrianmacneil)
128+
[Migs](https://github.com/thephpleague/omnipay-migs) | omnipay/migs | [Adrian Macneil](https://github.com/adrianmacneil)
129+
[Mollie](https://github.com/thephpleague/omnipay-mollie) | omnipay/mollie | [Adrian Macneil](https://github.com/adrianmacneil)
130+
[MultiSafepay](https://github.com/thephpleague/omnipay-multisafepay) | omnipay/multisafepay | [Alexander Deruwe](https://github.com/aderuwe)
131+
[Netaxept (BBS)](https://github.com/thephpleague/omnipay-netaxept) | omnipay/netaxept | [Adrian Macneil](https://github.com/adrianmacneil)
132+
[Netbanx](https://github.com/thephpleague/omnipay-netbanx) | omnipay/netbanx | [Maks Rafalko](https://github.com/borNfreee)
133133
[Neteller](https://github.com/alfaproject/omnipay-neteller) | alfaproject/omnipay-neteller | [João Dias](https://github.com/alfaproject)
134134
[Pacnet](https://github.com/mfauveau/omnipay-pacnet) | mfauveau/omnipay-pacnet | [Matthieu Fauveau](https://github.com/mfauveau)
135-
[PayFast](https://github.com/omnipay/payfast) | omnipay/payfast | [Adrian Macneil](https://github.com/adrianmacneil)
136-
[Payflow](https://github.com/omnipay/payflow) | omnipay/payflow | [Adrian Macneil](https://github.com/adrianmacneil)
137-
[PaymentExpress (DPS)](https://github.com/omnipay/paymentexpress) | omnipay/paymentexpress | [Adrian Macneil](https://github.com/adrianmacneil)
135+
[PayFast](https://github.com/thephpleague/omnipay-payfast) | omnipay/payfast | [Adrian Macneil](https://github.com/adrianmacneil)
136+
[Payflow](https://github.com/thephpleague/omnipay-payflow) | omnipay/payflow | [Adrian Macneil](https://github.com/adrianmacneil)
137+
[PaymentExpress (DPS)](https://github.com/thephpleague/omnipay-paymentexpress) | omnipay/paymentexpress | [Adrian Macneil](https://github.com/adrianmacneil)
138138
[PaymentSense](https://github.com/coatesap/omnipay-paymentsense) | coatesap/omnipay-paymentsense | [Andrew Coates](https://github.com/coatesap)
139-
[PayPal](https://github.com/omnipay/paypal) | omnipay/paypal | [Adrian Macneil](https://github.com/adrianmacneil)
140-
[Pin Payments](https://github.com/omnipay/pin) | omnipay/pin | [Adrian Macneil](https://github.com/adrianmacneil)
139+
[PayPal](https://github.com/thephpleague/omnipay-paypal) | omnipay/paypal | [Adrian Macneil](https://github.com/adrianmacneil)
140+
[Pin Payments](https://github.com/thephpleague/omnipay-pin) | omnipay/pin | [Adrian Macneil](https://github.com/adrianmacneil)
141141
[Realex](https://github.com/coatesap/omnipay-realex) | coatesap/omnipay-realex | [Andrew Coates](https://github.com/coatesap)
142-
[Sage Pay](https://github.com/omnipay/sagepay) | omnipay/sagepay | [Adrian Macneil](https://github.com/adrianmacneil)
143-
[SecurePay](https://github.com/omnipay/securepay) | omnipay/securepay | [Adrian Macneil](https://github.com/adrianmacneil)
142+
[Sage Pay](https://github.com/thephpleague/omnipay-sagepay) | omnipay/sagepay | [Adrian Macneil](https://github.com/adrianmacneil)
143+
[SecurePay](https://github.com/thephpleague/omnipay-securepay) | omnipay/securepay | [Adrian Macneil](https://github.com/adrianmacneil)
144144
[SecPay](https://github.com/justinbusschau/omnipay-secpay) | justinbusschau/omnipay-secpay | [Justin Busschau](https://github.com/justinbusschau)
145145
[Sisow](https://github.com/nettob/omnipay-sisow) | nettob/omnipay-sisow | [Niek](https://github.com/nettob)
146146
[Skrill](https://github.com/alfaproject/omnipay-skrill) | alfaproject/omnipay-skrill | [João Dias](https://github.com/alfaproject)
147-
[Stripe](https://github.com/omnipay/stripe) | omnipay/stripe | [Adrian Macneil](https://github.com/adrianmacneil)
148-
[TargetPay](https://github.com/omnipay/targetpay) | omnipay/targetpay | [Alexander Deruwe](https://github.com/aderuwe)
149-
[WorldPay](https://github.com/omnipay/worldpay) | omnipay/worldpay | [Adrian Macneil](https://github.com/adrianmacneil)
147+
[Stripe](https://github.com/thephpleague/omnipay-stripe) | omnipay/stripe | [Adrian Macneil](https://github.com/adrianmacneil)
148+
[TargetPay](https://github.com/thephpleague/omnipay-targetpay) | omnipay/targetpay | [Alexander Deruwe](https://github.com/aderuwe)
149+
[WorldPay](https://github.com/thephpleague/omnipay-worldpay) | omnipay/worldpay | [Adrian Macneil](https://github.com/adrianmacneil)
150150

151151
Gateways are created and initialized like so:
152152

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

183183
## Credit Card / Payment Form Input
184184

185-
User form input is directed to an [CreditCard](https://github.com/omnipay/common/blob/master/src/Omnipay/Common/CreditCard.php)
185+
User form input is directed to an [CreditCard](https://github.com/thephpleague/omnipay-common/blob/master/src/Omnipay/Common/CreditCard.php)
186186
object. This provides a safe way to accept user input.
187187

188188
The `CreditCard` object has the following fields:
@@ -240,7 +240,7 @@ $card->setFirstName('Adrian');
240240
```
241241

242242
If you submit credit card details which are obviously invalid (missing required fields, or a number
243-
which fails the Luhn check), [InvalidCreditCardException](https://github.com/omnipay/common/blob/master/src/Omnipay/Common/Exception/InvalidCreditCardException.php)
243+
which fails the Luhn check), [InvalidCreditCardException](https://github.com/thephpleague/omnipay-common/blob/master/src/Omnipay/Common/Exception/InvalidCreditCardException.php)
244244
will be thrown. You should validate the card details using your framework's validation library
245245
before submitting the details to your gateway, to avoid unnecessary API calls.
246246

@@ -307,7 +307,7 @@ To summarize the various parameters you have available to you:
307307

308308
## The Payment Response
309309

310-
The payment response must implement [ResponseInterface](https://github.com/omnipay/common/blob/master/src/Omnipay/Common/Message/ResponseInterface.php). There are two main types of response:
310+
The payment response must implement [ResponseInterface](https://github.com/thephpleague/omnipay-common/blob/master/src/Omnipay/Common/Message/ResponseInterface.php). There are two main types of response:
311311

312312
* Payment was successful (standard response)
313313
* Website requires redirect to off-site payment form (redirect response)
@@ -408,13 +408,13 @@ you really think this should be a core feature and worth the effort.
408408

409409
## Example Application
410410

411-
An example application is provided in the [omnipay/example](https://github.com/omnipay/example) repo.
411+
An example application is provided in the [omnipay/example](https://github.com/thephpleague/omnipay-example) repo.
412412
You can run it using PHP's built in web server (PHP 5.4+):
413413

414414
$ php composer.phar update --dev
415415
$ php -S localhost:8000
416416

417-
For more information, see the [Omnipay example application](https://github.com/omnipay/example).
417+
For more information, see the [Omnipay example application](https://github.com/thephpleague/omnipay-example).
418418

419419
## Support
420420

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"twocheckout",
4646
"worldpay"
4747
],
48-
"homepage": "https://github.com/omnipay/omnipay",
48+
"homepage": "https://github.com/thephpleague/omnipay",
4949
"license": "MIT",
5050
"authors": [
5151
{
@@ -54,7 +54,7 @@
5454
},
5555
{
5656
"name": "Omnipay Community",
57-
"homepage": "https://github.com/omnipay/omnipay/graphs/contributors"
57+
"homepage": "https://github.com/thephpleague/omnipay/graphs/contributors"
5858
}
5959
],
6060
"require": {

0 commit comments

Comments
 (0)