clizaola / simplecast by clizaola

A Laravel Package wrapper around the Simplecast API.
462
3
2
Package Data
Maintainer Username: clizaola
Maintainer Contact: carlos@lizaola.net (Carlos Lizaola)
Package Create Date: 2017-07-19
Package Last Update: 2017-07-19
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2025-02-06 03:07:34
Package Statistics
Total Downloads: 462
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 1
Total Open Issues: 1

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