user2012783
user2012783

Reputation: 193

Paypal Subscription

I have used omnipay before in a laravel project to process payments but i want be able to manage paypal subscriptions. can omnipay do this? If not can someone point me in the right direction.

thanks a lot!

Upvotes: 0

Views: 883

Answers (2)

Joe
Joe

Reputation: 105

Yes. It is not documented very well but the omnipay rest gateway exposes the subscription methods (even when it's own documentation says it doesn't). Omnipay does not support it in a standard structure (see this thread) but it is encouraging people to implement them within gateways in the hope of being able to see the common structure and standardise it eventually.

If you look carefully you will find a few drivers support subscriptions (braintree, paypal and stripe all spring to mind) but they are all custom.

Upvotes: 1

Luke Cousins
Luke Cousins

Reputation: 2156

No. As per the readme.

Omnipay does not cover recurring payments or billing agreements, and so those features are not included in this package. Extensions to this gateway are always welcome.

Upvotes: 0

Related Questions