Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulogmello/syncsheets
Fast way to syncronize with google sheets
https://github.com/paulogmello/syncsheets
Last synced: about 23 hours ago
JSON representation
Fast way to syncronize with google sheets
- Host: GitHub
- URL: https://github.com/paulogmello/syncsheets
- Owner: paulogmello
- Created: 2024-11-09T19:06:39.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-12T13:10:52.000Z (2 months ago)
- Last Synced: 2024-11-14T10:46:08.768Z (2 months ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# syncSheets (In development)
An easy and fast way to syncronize google sheets with your system- [x] Read Tables
- [ ] Create Tables
- [ ] Delete Tables
- [ ] Modify Tables
- [ ] Add Permissions### Instalation
**OBS: Before everything, you need create an API in Google for Developers because you will need a credentials.json and your Application Name**
Use the following code in composer
composer require paulogmello/sheetsync
To use this lib, you will need Google/Api client, the script will bring all you will need#### Instancing a new sheetSync
$sheet = new sheetSync('MyAppName', './credentials.json');
Theese two params are from your Google API#### Reading a Table
$array = $sheet->read("sheetId", "sheetPage");