wangta69/news

News Api Service

1.0.0 2018-02-07 10:01 UTC

This package is auto-updated.

Last update: 2024-04-26 16:02:44 UTC


README

Installation

composer require wangta69/news

composer require "wangta69/news @dev"

Step 1) Add ServiceProvider to the providers array in config/app.php.

Pondol\News\NewsServiceProvider::class,

.env

NAVER_CLIENT_ID=WhatYouGetFromNaver
NAVER_CLIENT_SECRET=WhatYouGetFromNaver

config/services.php

'naver' => [
        'client_id' => env('NAVER_CLIENT_ID'),
        'client_secret' => env('NAVER_CLIENT_SECRET'),
    ],