PHPackages                             mandofever78/laravel-easypost - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. mandofever78/laravel-easypost

ActiveLibrary[API Development](/categories/api)

mandofever78/laravel-easypost
=============================

0162[1 PRs](https://github.com/mandofever78/laravel-easypost/pulls)PHP

Since Oct 24Pushed 10y ago2 watchersCompare

[ Source](https://github.com/mandofever78/laravel-easypost)[ Packagist](https://packagist.org/packages/mandofever78/laravel-easypost)[ RSS](/packages/mandofever78-laravel-easypost/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Easypost for Laravel 4
======================

[](#easypost-for-laravel-4)

Integrates the Easypost PHP library with Laravel 4 via a ServiceProvider, config, and Blade extensions.

*This is originally a fork from the [abodeo/laravel-stripe](https://github.com/Abodeo/laravel-stripe) package*

### Installation

[](#installation)

Include laravel-easypost as a dependency in composer.json:

```
"mandofever78/laravel-easypost": "dev-master"

```

Run `composer install` to download the dependency.

Add the ServiceProvider to your provider array within `app/config/app.php`:

```
'providers' => array(

    'Mandofever78\LaravelEasypost\LaravelEasypostServiceProvider'

)

```

Finally, publish the configuration files via `php artisan config:publish mandofever78/laravel-easypost`.

### Configuration

[](#configuration)

It is advisable to keep all of your sensitive configuration out of your configuration files. Instead, utilize Laravel's "dot files" to keep them out of source control and making them easily overridable on dev environments.

If you have not setup a "dot file", read Laravel's "[Protecting Sensitive Configuration](http://laravel.com/docs/configuration#protecting-sensitive-configuration) for detailed setup instructions. To quickly get up an running, simply create a `.env.php` file in the same directory as you apps `composer.json` file. Then add your Stripe API credentials to it.

```
