glorand/laravel-drip

A Laravel wrapper for Drip's REST API v2.0

Maintainers

👁 glorand

Package info

github.com/glorand/laravel-drip

Type:laravel-package

pkg:composer/glorand/laravel-drip

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.0 2018-12-27 11:54 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 2d5be068cbee65d93ca2051a1396e425a69fb162

  • Lorand Gombos <gombos.lorand.woop@gmail.com>

dripgloranddrip-phplaravel-dripdrip-api

This package is auto-updated.

Last update: 2026-06-08 23:59:13 UTC


README

👁 drip

👁 laravel

Laravel 5.7 integration for Drip PHP package

👁 Latest Stable Version
👁 Build Status
👁 Software License
👁 StyleCI
👁 Scrutinizer Code Quality

The package requires PHP 7.1.3+ and follows the FIG standards PSR-1, PSR-2 and PSR-4 to ensure a high level of interoperability between shared PHP.

Bug reports, feature requests, and pull requests can be submitted by following our Contribution Guide.

Documentation

Documentation for Drip PHP package can be found here.

Installation

$ composer require glorand/laravel-drip
{
 "require": {
 "glorand/laravel-drip": "^1.0"
 }
}

Set the Service Provider and Facade alias

After installing the package, open your Laravel config file located at config/app.php and add the following lines.

In the $providers array add the following service provider for this package.

\Glorand\Drip\Laravel\DripServiceProvider::class,

In the $aliases array add the following facade for this package.

'Drip' => Glorand\Drip\Laravel\DripFacade::class,

Config - Environment variables

Update your .env file

DRIP_ACCOUNT_ID=your-account_id
DRIP_API_KEY=your-api-key
DRIP_USER_AGENT=custom-agent

Usage

For usage, please refer to the Drip PHP package documentation, located here.

Contract

Use namespace Glorand\Drip\Laravel\DripContract in your controller or service constructor

Facade

Just use the Laravel facade alias Drip:: instead of the native call $drip->.

Helper

Just use the helper function drip() instead of the native call $drip->.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see LICENSE for more information.