Skip to content

clizaola/simplecast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simplecast Wrapper Package for Laravel

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).