rpsimao/laravel-scaleway

Library for interacting with the Scaleway REST API
442
Install
composer require rpsimao/laravel-scaleway
Latest Version:1.2
PHP:>=5.5
License:MIT
Last Updated:Jul 4, 2017
Links: GitHub  ·  Packagist
Maintainer: rpsimao

Laravel-Scaleway

Consume Scaleway RESP API, with Laravel integration

Table of Contents

Installation

{
    "require": {
        "rpsimao/laravel-scaleway": "~1.0"
    }
}

Add provider in your app.php

'providers' => array(
    //...
    rpsimao\Scaleway\LaravelScalewayServiceProvider::class,
),

Add facade in your app.php

'aliases' => array(
    //...
    'RPSScaleway' => rpsimao\Scaleway\LaravelScalewayFacade::class,
),

Set the api key in config/services.php

  'scaleway' => [
      'user' => env('SCALEWAY-USER'),
      'password' => env('SCALEWAY-PASSWORD'),
      'token'=> env('SCALEWAY-TOKEN')
  ],

Set the Credentials in .env file

SCALEWAY-USER=my-username
SCALEWAY-PASSWORD=my-password
SCALEWAY-TOKEN=my-token

Related Packages

marcelgwerder/laravel-api-handler

Package providing helper functions for a Laravel REST-API

93,917 155
threesquared/laravel-wp-api

Laravel package for the Wordpress JSON REST API

10,350 13
pixelpeter/laravel5-woocommerce-api-client

Laravel 5 wrapper for the Woocommerce REST API

105,927 123
vjroby/laravel-nonce

This is a package for integrating nonces in Laravel in requests

42,757 3
sdv/laravel-endpoint

Laravel Endpoint is a CRUD REST API package for Laravel.

18,791 11