2017 © Pedro Peláez
 

library simplecast

A Laravel Package wrapper around the Simplecast API.

image

clizaola/simplecast

A Laravel Package wrapper around the Simplecast API.

  • Thursday, July 20, 2017
  • by clizaola
  • Repository
  • 1 Watchers
  • 2 Stars
  • 122 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 3 % Grown

The README.md

Simplecast Wrapper Package for Laravel

Installation

To get the latest version, simply require the project using Composer:, (*1)

$ composer require clizaola/simplecast

Configuration

Add the Service provider class inside of the /config/app.php in the providers section, (*2)

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

Add the Facade class inside of the /config/app.php in the aliases section, (*3)

    '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, (*4)

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

Enjoy!

License

This package is licensed under The MIT License (MIT)., (*5)

The Versions

20/07 2017

dev-master

9999999-dev

A Laravel Package wrapper around the Simplecast API.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Carlos Lizaola

20/07 2017

v0.1.1

0.1.1.0

A Laravel Package wrapper around the Simplecast API.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Carlos Lizaola

19/07 2017

v0.1

0.1.0.0

A Laravel Package wrapper around the Simplecast API.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Carlos Lizaola