PHPackages                             jaredclemence/laravel\_google\_calendar\_api - 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. [API Development](/categories/api)
4. /
5. jaredclemence/laravel\_google\_calendar\_api

ActiveLibrary[API Development](/categories/api)

jaredclemence/laravel\_google\_calendar\_api
============================================

This is a plugin for laravel 5 projects to simplify the google calendar api.

v0.0.0(8y ago)02MITPHPPHP ^7.1.3

Since Apr 5Pushed 8y ago1 watchersCompare

[ Source](https://github.com/JaredClemence/laravel_google_calendar_api)[ Packagist](https://packagist.org/packages/jaredclemence/laravel_google_calendar_api)[ RSS](/packages/jaredclemence-laravel-google-calendar-api/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependencies (4)Versions (2)Used By (0)

= Google Calendar Api for Laravel =

== Installing ==

Use composer to include this in your laravel package. From the base directory of your laravel 5 program, use the following command:

```
composer require jaredclemence/laravel_google_calendar_api

```

== Use ==

This package uses the namespace JRC\\Google\\Calendar. All classes will be in this namespace.

Prior to using this package,

1. Register your application with Google
2. Create an OAuth 2.0 credential for your application
3. Download your application credentials as a json file and put a relative path reference to your json file in your .env file (This service will tell you the appropriate name of the env variable name in an exception, so just put it anywhere for now, and then change the variable name after you receive the error.)

=== Obtain an Auth Code ===

After including the composer autoloader, you will be able reference the CalendarAuthController. Start by instantiating an instance of this class. Call the method `getAuthUrl()` to generate a redirect URL for your program. You will receive errors indicating which fields need to be set in your .env file.

Send the user to that URL by passing back a `redirect( $url )` value from your controller method.

For example:

Let us assume that we have set up the following route:

```
Route::get( '/google/auth', 'MyController@redirectUser' );

```

Then in our controller, we will have the following method:

```
class MyController extends Controller{
    ...
    public function redirectUser(){
        $authController = new JRC\Google\Calendar\CalendarAuthController();
        $uri = $authController->getAuthUrl();
        return redirect( $uri );
    }
    ...
}

```

This will pass your user to the Google Auth view, where your user will grant your application permissions.

Google will call your program back at the URI you specify in your application's registration. (Don't worry if you picked a bad URI, you can always update this in your Google account and download a new JSON file.)

\*\* Further edits are being made to this file \*\*

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2963d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/460d2e6f770b10a12f54f57c9caf50e745c4e9ef5de451b21b8d813219f65260?d=identicon)[jaredclemence@gmail.com](/maintainers/jaredclemence@gmail.com)

### Embed Badge

![Health badge](/badges/jaredclemence-laravel-google-calendar-api/health.svg)

```
[![Health](https://phpackages.com/badges/jaredclemence-laravel-google-calendar-api/health.svg)](https://phpackages.com/packages/jaredclemence-laravel-google-calendar-api)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
