I'm running Laravel 5.2 and want to implement Cashier package (6.0, as 7.0 need L5.3) and Stripe.
But I cannot find any compatibility table between Cashier and Stripe API versions.
Do someone knows where to find a compatibility sheet?
Is there any other way to see what's cashier 6.0 is compatible with?
I can upgrade my Stripe API version, but I only have a 72h rollback possibility.
Thanks
Looking through the Cashier repository it doesn't seem to specify which version of the Stripe API version it works with. However, it does look like it's a minimal wrapper around stripe-php, the Stripe PHP library. It may work fine, but with any API upgrade it's important to test your site thoroughly, run your tests, etc against the new API version. You can see a detailed explanation of what will change when you upgrade your API by reading through this page:
https://stripe.com/docs/billing/subscriptions/prorations
Beyond that I'd ask the maintainer of Cashier for their thoughts on compatibility across Stripe API versions.
Related
Stripe and Braintree are not available in my location, so I've to use Paypal.
I'm trying to figure out the technicalities and best practices , since it's my first time integrating payments.
I'm also trying to figure how to smoothly go from a register + free access, to register + pay to access
Questions:
I want to make it a smooth transition when I decide to start charging my users for access. What do I need to set-up beforehand? Currently I haven't launched yet so I want to prepare everything I need.
Can I use cashier to manage access for users that paid but while I'm using paypal and not stripe like cashier use? (i mean to use some of cashier functionality).
note: I found a package on github (https://github.com/srmklive/laravel-paypal) that integrates paypal into a laravel app, but it uses a deprecated api from 2017.
I want to integrate Stripe into my Laravel app, and I'm wondering what is better solution for it: https://github.com/cartalyst/stripe-laravel or https://laravel.com/docs/5.3/billing?
If you're only performing "one-off" charges use the Stripe SDK directly or stripe-laravel by Cartalyst. https://cartalyst.com/manual/stripe-laravel/
If you're offering subscriptions, you should use Laravel Cashier instead. https://laravel.com/docs/5.4/billing
Our company is about to start a real estate project and have decided to go with the laravel 5.3 framework. The first phase is to write the apis and then these apis will be consumed by the mobile team and the frontend team to build the official mobile app and the web portal respectively.
Now I am confused whether to use laravel's built-in Resource controllers (as instructed in this tutorial http://www.programmableweb.com/news/how-to-build-restful-apis-using-php-and-laravel/how-to/2014/08/13) or use the Dingo Api framework.
Could you please help me which one should I go for and why as per the requirements i mentioned above?
Thanks in advance
Since, Laravel 5.3 comes with Passport (for api authentication), I would suggest you to use Resource controller, which is very simple and easy to work with, and also it create a meaningful end points
Route::resource('post','PostController');
GET /post/{post}
POST /post
EDIT /post/{post}/edit
DELETE /post/{post}
I want to integrate stripe payment gateway in my laravel 5.2 project. I gone through with four-five blog and also laravel docs, but not succeed. suggest me, good links.
Laravel official documentation
Stripe official doucmentation
Video tutorial
I would like to integrate SecurePay payment gateway in Akeeba subscription component in Joomla 2.5
I am familiar with ceating component and modules in Joomla 1.5
Please give some guidance to integrate it.
Thanks.
All payment methods are standard Joomla! plugins, belonging to the akpayment group. Look at the existing plugins to learn how they work. Then - provided with the necessary information about SecurePay's payment handling - you should be able to write your own plugin.