gtmassey/wrapsheet

A fluent PHP/Laravel wrapper for the SmartSheet API.

v0.0.1-alpha 2025-03-18 19:05 UTC

This package is auto-updated.

Last update: 2025-03-18 19:26:47 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A Fluent PHP/Laravel wrapper for the Smartsheet API.

Caution

This is a work in progress and is NOT production ready!!

Installation

You can install the package via composer:

composer require gtmassey/wrapsheet

Optionally, you can publish the config file with:

php artisan vendor:publish --tag="wrapsheet-config"

This is the contents of the published config file:

return [
    'api-token' => env('SMARTSHEET_API_TOKEN', ''),
];

Once installed, you will need to add your API token either to the config file or to the .env file with the key SMARTSHEET_API_TOKEN

Usage

Getting a Sheet Object

To get a Sheet object to interact with, you can run

use Gtmassey\Wrapsheet\Wrapsheet;

$sheetID = 123456789;
$sheet = Wrapsheet::getSheet($sheetID);

Once you have retrieved the sheet object, several methods are exposed allowing you to manipulate, get, and, update data from the sheet.

Sheet Available Methods:

  1. getColumns
  2. getColumn
  3. getRows
  4. getRow

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.