All Projects → faustbrian → laravel-stripe

faustbrian / laravel-stripe

Licence: MPL-2.0 license
No description or website provided.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel-stripe

dailycodingproblem
Solutions to Daily Coding Problem questions
Stars: ✭ 26 (+85.71%)
Mutual labels:  stripe
ligh7hau5
A Matrix (https://matrix.org/docs/spec/) to Fediverse / ActivityPub client / bridge. Also, some media proxying.
Stars: ✭ 26 (+85.71%)
Mutual labels:  bridge
bridge-ui
UI for TokenBridge, an interoperability solution between Ethereum networks for native and ERC tokens
Stars: ✭ 41 (+192.86%)
Mutual labels:  bridge
react-elements-netlify-serverless
Digital Wallet payments with React Stripe Elements and Netlify Functions
Stars: ✭ 21 (+50%)
Mutual labels:  stripe
open-crowd-fund
🐣 Your open source solution to crowd fund your ideas. Powered by Gatsby.js.
Stars: ✭ 95 (+578.57%)
Mutual labels:  stripe
WebViewJavascriptBridge
This is a communication between Android applications and Web Javascript to establish a bridge between the call support each other
Stars: ✭ 16 (+14.29%)
Mutual labels:  bridge
matrix-sms-bridge
Matrix bridge, that allows you to bridge matrix rooms to SMS with one telephone number only.
Stars: ✭ 62 (+342.86%)
Mutual labels:  bridge
starkgate-frontend
Bridge interface allows users to transfer ERC20 tokens from Ethereum to StarkNet and vice versa.
Stars: ✭ 75 (+435.71%)
Mutual labels:  bridge
module-stripe
Stripe Payments for Magento 2
Stars: ✭ 45 (+221.43%)
Mutual labels:  stripe
stripe-graphql
[WIP] 🚧🚧🚧 😎 Community-driven Stripe GraphQL API with superpowers.
Stars: ✭ 53 (+278.57%)
Mutual labels:  stripe
payment-fields
React component for Braintree/Stripe/Square payment fields
Stars: ✭ 17 (+21.43%)
Mutual labels:  stripe
Ignite
A comprehensive Flask boilerplate to build SaaS applications that includes Stripe billing, emails, login, and OAuth.
Stars: ✭ 102 (+628.57%)
Mutual labels:  stripe
ecommerce-app
An Angular JS Ecommerce App Powered by Cosmic JS
Stars: ✭ 47 (+235.71%)
Mutual labels:  stripe
unity-bridge-ui-framework
🏝 a little framework base on unity and ugui,we use bridges to connect one panel to another panel
Stars: ✭ 90 (+542.86%)
Mutual labels:  bridge
Matrix-EmailBridge
A bridge written in Golang to receive and write emails in matrix
Stars: ✭ 101 (+621.43%)
Mutual labels:  bridge
TradeByte
💸 TradeByte - Stocks Trading Simulation WebApp
Stars: ✭ 30 (+114.29%)
Mutual labels:  stripe
subscribie
Collect recurring payments online - subscription payments collection automation
Stars: ✭ 36 (+157.14%)
Mutual labels:  stripe
minecraft-discord-bridge
A minecraft <-> discord bridge with no server-side requirements
Stars: ✭ 30 (+114.29%)
Mutual labels:  bridge
GitBridge
Access resources and information from the git repository containing your project.
Stars: ✭ 14 (+0%)
Mutual labels:  bridge
teini
👶 Teini (tiny, [ˈtīnē]) is an extremely small webshop leveraging awesome and free solutions like Github and Vercel.
Stars: ✭ 148 (+957.14%)
Mutual labels:  stripe

Laravel Stripe

Build Status PHP from Packagist Latest Version License

A Stripe bridge for Laravel.

Installation

Require this package, with Composer, in the root directory of your project.

$ composer require artisanry/stripe

Configuration

Laravel Stripe requires connection configuration. To get started, you'll need to publish all vendor assets:

$ php artisan vendor:publish --provider="Artisanry\Stripe\StripeServiceProvider"

This will create a config/stripe.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

Default Connection Name

This option default is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is main.

Stripe Connections

This option connections is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like.

Usage

StripeManager

This is the class of most interest. It is bound to the ioc container as stripe and can be accessed using the Facades\Stripe facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of Graham Campbell's Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repository. Note that the connection class returned will always be an instance of Stripe\Stripe.

Facades\Stripe

This facade will dynamically pass static method calls to the stripe object in the ioc container which by default is the StripeManager class.

StripeServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings.

Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:

// You can alias this in config/app.php.
use Artisanry\Stripe\Facades\Stripe;

Stripe::getCharge()->create([
    'card' => $myCard,
    'amount' => 2000,
    'currency' => 'usd'
]);
// We're done here - how easy was that, it just works!

// The above is the same as the following with the official Stripe SDK.
// \Stripe\Stripe\Charge::create(array('card' => $myCard, 'amount' => 2000, 'currency' => 'usd'));

The Stripe manager will behave like it is a Stripe\Stripe. If you want to call specific connections, you can do that with the connection method:

use Artisanry\Stripe\Facades\Stripe;

// Writing this…
Stripe::connection('main')->getCharge()->create($params);

// …is identical to writing this
Stripe::getCharge()->create($params);

// and is also identical to writing this.
Stripe::connection()->getCharge()->create($params);

// This is because the main connection is configured to be the default.
Stripe::getDefaultConnection(); // This will return main.

// We can change the default connection.
Stripe::setDefaultConnection('alternative'); // The default is now alternative.

If you prefer to use dependency injection over facades like me, then you can inject the manager:

use Artisanry\Stripe\StripeManager;

class Foo
{
    protected $stripe;

    public function __construct(StripeManager $stripe)
    {
        $this->stripe = $stripe;
    }

    public function bar($params)
    {
        $this->stripe->getCharge()->create($params);
    }
}

App::make('Foo')->bar($params);

Documentation

There are other classes in this package that are not documented here. This is because the package is a Laravel wrapper of the official Stripe package.

Testing

$ phpunit

Security

If you discover a security vulnerability within this package, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.

Credits

This project exists thanks to all the people who contribute.

License

Mozilla Public License Version 2.0 (MPL-2.0).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].