travoltron / cashier-extras
Adding the missing features to the fantastic Laravel Cashier package
Requires
- doctrine/dbal: ^2.5
- nesbot/carbon: ~1.18
- stripe/stripe-php: ^3.15
Requires (Dev)
- phpunit/phpunit: ^5.5
- scrutinizer/ocular: ~1.1
- squizlabs/php_codesniffer: ~2.3
This package is not auto-updated.
Last update: 2024-10-27 02:04:31 UTC
README
Install
Via Composer
$ composer require travoltron/cashier-extras
Add the following to config/app.php
:
Travoltron\CashierExtras\CashierExtrasServiceProvider::class,
Usage
This package adds a few interactive CLI tools to make working with Stripe and Laravel's Cashier package a little bit easier. For now it supports creating, listing, and deleting both Stripe Plans and Coupons.
The Laravel Cashier package documentation states that to run it's own suite of tests, some plans and a coupon need to be added to your Stripe account.
The added commands are as follows:
###Cashier Testing
php artisan cashier:test-data
This adds the needed plans and coupons for Laravel Cashier testing.
###Check Stripe Keys
php artisan stripe:check-keys
This checks that the .env
file has been populated with the correct keys and checks at a very loose level that the keys are correctly formatted.
###Stripe Plans
php artisan stripe:list-plans
Displays a table of the plans currently enabled on your Stripe account.
php artisan stripe:make-plan
Interactive wizard to create a plan via the CLI.
php artisan stripe:delete-plan {id}
Deletes a plan with the supplied id. To see this ID, list the plans, and select the value from the first column.
###Stripe Coupons
php artisan stripe:list-coupons
Displays a table of the coupons currently enabled on your Stripe account.
php artisan stripe:make-coupon
Interactive wizard to create a coupon via the CLI.
php artisan stripe:delete-coupon {id}
Deletes a coupon with the supplied id. To see this ID, list the coupons, and select the value from the first column.
##Caveats
By default, the config/services.php
file has a section for Stripe setup like so:
'stripe' => [ 'model' => App\User::class, 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), ],
In order to check for the keys being set properly, change this to:
'stripe' => [ 'model' => App\User::class, 'key' => env('STRIPE_KEY', env('STRIPE_TEST_KEY')), 'secret' => env('STRIPE_SECRET', env('STRIPE_TEST_SECRET')), ],
and add the keys STRIPE_TEST_KEY
and STRIPE_TEST_SECRET
to your .env file.
Change log
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Security
If you discover any security related issues, please email ben@travoltron.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.