Download the PHP package codegis/google-calendar-laravel without Composer
On this page you can find all versions of the php package codegis/google-calendar-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download codegis/google-calendar-laravel
More information about codegis/google-calendar-laravel
Files in codegis/google-calendar-laravel
Package google-calendar-laravel
Short Description Manage events on a Google Calendar
License MIT
Homepage https://github.com/codegis/google-calendar-laravel
Informations about the package google-calendar-laravel
Manage events on a Google Calendar
This package makes working with a Google Calendar a breeze. Once it has been set up you can do these things:
Codegis is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
Postcardware
You're free to use this package (it's MIT-licensed), but if it makes it to your production environment you are required to send us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Codegis, Samberstraat 69D, 2060 Antwerp, Belgium.
The best postcards will get published on the open source page on our website.
Installation
You can install the package via composer:
Next up the service provider must be registered:
Optionally the Codegis\GoogleCalendar\GoogleCalendarFacade
must be registered:
You must publish the configuration with this command:
This will publish file called laravel-google-calendar.php
in your config-directory with this contents:
Read this blogpost to learn how to get the correct values for client_secret_json
and calendar_id
.
Usage
Getting events
You can fetch all events by simply calling Event::get();
this will return all events of the coming year. An event comes in the form of a Codegis\GoogleCalendar\Event
object.
The full signature of the function is:
The parameters you can pass in $queryParameters
are listed on the documentation on list
at the Google Calendar API docs.
Accessing start and end dates of an event
You can use these getters to retrieve start and end date as Carbon instances:
Creating an event
You can just new up a Codegis\GoogleCalendar\Event
-object
You can also call create
statically:
This will create an event with a specific start and end time. If you want to create a full day event you must use startDate
and endDate
instead of startDateTime
and endDateTime
.
Getting a single event
Google assigns a unique id to every single event. You can get this id by getting events using the get
method and getting the id
property on a Codegis\GoogleCalendar\Event
-object:
You can use this id to fetch a single event from Google:
Updating an event
Easy, just change some properties and call save()
:
Deleting an event
Nothing to it!
Limitations
The Google Calendar API provides many options. This package doesn't support all of them. For instance recurring events cannot be managed properly with this package. If you stick to creating events with a name and a date you should be fine.
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Freek Van der Herten
- All Contributors
About Codegis
Codegis is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
License
The MIT License (MIT). Please see License File for more information.
All versions of google-calendar-laravel with dependencies
google/apiclient Version ^2.0
illuminate/support Version ^5.2.8
nesbot/carbon Version ^1.21