PHPackages                             niisan/laravel-oauth-google-calendar - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. niisan/laravel-oauth-google-calendar

ActiveLibrary

niisan/laravel-oauth-google-calendar
====================================

Using Google Calendar Api by using OAuth in Laravel.

v1.3.0(4y ago)030.1k3[1 issues](https://github.com/niisan-tokyo/oauth-google-calendar/issues)MITPHP

Since Feb 18Pushed 4y ago1 watchersCompare

[ Source](https://github.com/niisan-tokyo/oauth-google-calendar)[ Packagist](https://packagist.org/packages/niisan/laravel-oauth-google-calendar)[ RSS](/packages/niisan-laravel-oauth-google-calendar/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (8)Dependencies (5)Versions (9)Used By (0)

oauth-google-calendar
=====================

[](#oauth-google-calendar)

This is a package of a series of processes to create an application linked to Google Calendar using OAuth authentication in Laravel.

Required
--------

[](#required)

Laravel &gt;= 5.8 PHP &gt;= 7.4

Install
-------

[](#install)

Install via composer.

```
composer require niisan/laravel-oauth-google-calendar

```

Then, bring the config to your config dir.

```
php artisan vendor:publish

```

and choose 'Niisan\\Laravel\\GoogleCalendar\\OauthCalendarServiceProvider'.

You can use this package via DI container.

```
    private OauthCalendarService $oauthCalendarService;

    public function __construct(OauthCalendarService $oauthCalendarService)
    {
        $this->oauthCalendarService = $oauthCalendarService;
    }
```

or

```
    $service = app(OauthCalendarService::class);
```

Config
------

[](#config)

This package's config file is the `google-calendar.php`.

```
