Skip to content
Renan Diaz edited this page Aug 22, 2025 · 1 revision

Google Sheets Helper Wiki

Welcome to the comprehensive wiki for the PHP Google Spreadsheets API Helper library. This wiki provides detailed documentation, examples, and best practices for working with Google Sheets API in PHP.

πŸš€ Quick Start

Get up and running in minutes:

composer require reandimo/google-sheets-helper
<?php
require __DIR__ . '/vendor/autoload.php';

use reandimo\GoogleSheetsApi\Helper;

putenv('credentialFilePath=path/to/credentials.json');
putenv('tokenPath=path/to/token.json');

$sheets = new Helper();
$sheets->setSpreadsheetId('your-spreadsheet-id');
$sheets->setWorksheetName('Sheet1');

// Read data
$values = $sheets->get();

πŸ“š Wiki Pages

Getting Started

Core Concepts

Advanced Topics

Examples & Tutorials

Reference

πŸ”§ Key Features

  • Simple API - Easy-to-use methods for common operations
  • Flexible Configuration - Environment variables or direct file paths
  • Comprehensive Coverage - All major Google Sheets operations supported
  • Error Handling - Built-in validation and error checking
  • Performance Optimized - Efficient API usage patterns

πŸ“– What's New

  • v1.2.0 - Enhanced worksheet management, better error handling
  • v1.1.0 - Added formatting capabilities and cell operations
  • v1.0.0 - Initial release with core functionality

🀝 Contributing

Found an issue or want to improve the documentation?

  1. Check the Contributing Guide
  2. Open an issue on GitHub
  3. Submit a pull request

πŸ“ž Support

πŸ“„ License

This library is open source and released under the MIT License. See the LICENSE file for details.


Need help? Start with the Quick Start Guide or check our FAQ for common questions.

Clone this wiki locally