gtmassey / wrapsheet
A fluent PHP/Laravel wrapper for the SmartSheet API.
Fund package maintenance!
gtmassey
Requires
- php: ^8.1|^8.2|^8.3
- guzzlehttp/guzzle: ^7.9
- illuminate/contracts: *
- illuminate/support: *
- nesbot/carbon: ^2.73
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.10
- laravel/pint: ^1.6
- nunomaduro/collision: ^6.4|^7.11.0|^v8.5.0
- orchestra/testbench: ^8.34|^9.5
- phpstan/extension-installer: ^1.2
- phpstan/phpstan-deprecation-rules: ^1.1.2
- phpstan/phpstan-mockery: ^1.1.1
- phpstan/phpstan-phpunit: ^1.3.7
- phpunit/phpunit: ^10
- rregeer/phpunit-coverage-check: ^0.3.1
This package is auto-updated.
Last update: 2025-03-18 19:26:47 UTC
README
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:
getColumns
getColumn
getRows
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.