2017 © Pedro Peláez
 

library laravel-evernote-cloud

Laravel wrapper for Evernote Cloud

image

ishannz/laravel-evernote-cloud

Laravel wrapper for Evernote Cloud

  • Wednesday, August 9, 2017
  • by ishannz
  • Repository
  • 1 Watchers
  • 2 Stars
  • 4,325 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 8 % Grown

The README.md

Installation

The Evernote cloud Service Provider can be installed via Composer by requiring the ishannz/laravel-evernote-cloud package and setting the minimum-stability to dev (required for Laravel 5) in your project's composer.json., (*1)

{
    "require": {
        "ishannz/laravel-evernote-cloud": "^2.0"
    },
    "minimum-stability": "dev"
}

or, (*2)

Require this package with composer:, (*3)

composer require ishannz/laravel-evernote-cloud

Update your composer.json file to include this package as a dependency, (*4)

Update your packages with composer update or install with composer install., (*5)

In Windows, you'll need to include the GD2 DLL php_gd2.dll as an extension in php.ini., (*6)

Usage

To use the Evernote Cloud Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this., (*7)

Find the providers key in config/app.php and register the Captcha Service Provider., (*8)

    'providers' => [
        // ...
        Ishannz\LaravelEvernote\LaravelEvernoteServiceProvider::class,
    ]

Find the aliases key in config/app.php., (*9)

    'aliases' => [
        // ...
        'Evernote' => Ishannz\LaravelEvernote\Facades\Evernote::class,
    ]

Publish the config file of the package., (*10)

php artisan vendor:publish --provider="Ishannz\LaravelEvernote\LaravelEvernoteServiceProvider" --tag=config

For Laravel 5 use 1.0.0, (*11)

Configuration

You can configure this in your .env file., (*12)

    EVERNOTE_KEY=your evernote key
    EVERNOTE_SECRET=your evernote secrect
    EVERNOTE_SANDBOX=true/false
    EVERNOTE_CALL_BACK=callback url eg: /evernote/callback , ?action=callback
    EVERNOTE_CHINA=false

to receive a token - Authentication, (*13)

    Evernote::authorize();

The Versions

09/08 2017

dev-master

9999999-dev

Laravel wrapper for Evernote Cloud

  Sources   Download

The Requires

 

by ishanjayamanne