clizaola/simplecast

A Laravel Package wrapper around the Simplecast API.

Installs: 464

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 1

Open Issues: 1

pkg:composer/clizaola/simplecast

v0.1.1 2017-07-19 22:26 UTC

This package is auto-updated.

Last update: 2025-09-27 04:21:46 UTC


README

Installation

To get the latest version, simply require the project using Composer:

$ composer require clizaola/simplecast

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

<?php
    return[
        ...
        'simplecast' => [
            'key' => env('SIMPLECAST_KEY'),
        ]
    ]

Enjoy!

License

This package is licensed under The MIT License (MIT).