PHPackages                             clizaola/simplecast - 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. clizaola/simplecast

ActiveLibrary[API Development](/categories/api)

clizaola/simplecast
===================

A Laravel Package wrapper around the Simplecast API.

v0.1.1(8y ago)34641[1 issues](https://github.com/clizaola/simplecast/issues)MITPHPPHP &gt;=5.6.4

Since Jul 19Pushed 8y ago1 watchersCompare

[ Source](https://github.com/clizaola/simplecast)[ Packagist](https://packagist.org/packages/clizaola/simplecast)[ RSS](/packages/clizaola-simplecast/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Simplecast Wrapper Package for Laravel
======================================

[](#simplecast-wrapper-package-for-laravel)

Installation
------------

[](#installation)

To get the latest version, simply require the project using [Composer](https://getcomposer.org):

```
$ composer require clizaola/simplecast
```

Configuration
-------------

[](#configuration)

Add the Service provider class inside of the /config/app.php in the providers section

```
    'providers' => [
        ...
        Clizaola\Simplecast\SimplecastServiceProvider::class,
        ...
    ]
```

Add the Facade class inside of the /config/app.php in the aliases section

```
    'aliases' => [
        ...
        'Simplecast' => Clizaola\Simplecast\SimplecastFacade::class
        ...
    ]
```

Add the configuration API Key to the /config/services.php, you can find the an example on the folder /config of this package

```
