Download the PHP package particle-academy/holy-sheet without Composer

On this page you can find all versions of the php package particle-academy/holy-sheet. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package holy-sheet

Holy Sheet

Standalone spreadsheet writing tool for agentic document creation.

PHP 8.2+ library for writing valid xlsx files from a JSON-shaped schema. Zero framework dependencies in the core (just ext-zip). An optional Laravel adapter — service provider, facade, artisan command — sits in HolySheet\Laravel\* and only loads when used. No HTTP routes, no controllers, no opinions about how your app exposes the writer; that's your pipeline's job.

Framework-agnostic by design

Layer What it requires
Core (HolySheet\Agent, HolySheet\HolySheet, validator, writer, schema) PHP 8.2+, ext-zip. Nothing else. Works in plain PHP scripts, Symfony, Laminas, Slim, CLI tools.
Laravel adapter (HolySheet\Laravel\*) Optional. Auto-registered via extra.laravel.providers if Laravel is installed; ignored otherwise. Provides facade, service provider, and php artisan holy-sheet:write command.

The package ships no HTTP endpoints. If you need an "Export to xlsx" route, you write the controller — Holy Sheet gives you the writer + facade.

Installation

Laravel apps auto-discover the optional adapter. Non-Laravel projects use HolySheet\Agent::* directly.

Quick start

Plain PHP (Symfony, Laminas, CLI, anywhere)

Laravel (via the facade)

Why this exists

Existing PHP spreadsheet libraries are either:

Agentic flows need something different: a small, deterministic API where an LLM can describe the sheet as data (rows, columns, types, formats) and the package writes the file in one pass — no per-cell ceremony, no global state, no surprise dependencies.

Features

Compatibility

Versions
PHP 8.2, 8.3, 8.4
Laravel adapter 10.x, 11.x, 12.x, 13.x (optional)
Frameworks any PHP 8.2+ project — Symfony, Laminas, Slim, plain PHP, CLI
Runtime deps none beyond ext-zip

Documentation

Topic Doc
Schema reference — every field, every type, every option docs/Schema.md
Recipes — 14 end-to-end patterns including round-trip + helper builders docs/Recipes.md
Read pathdescribe() contract + lossy-fields list docs/ReadPath.md
Laravel adapter — facade methods, service provider, artisan command docs/LaravelAdapter.md
Agent skill — system prompt for LLM consumption skills/holy-sheet.md
JSON Schema — for tool-use validators skills/holy-sheet.schema.json

Run the demo

Writes a 3-sheet workbook (Sales / Notes / Status) demonstrating every feature — currency + percent + date columns, totals row, frozen header, merged title cell, comment, custom theme. See examples/README.md for the full walkthrough.

Three entry points, one schema

Caller Entry
Plain PHP HolySheet\Agent::write($schema, $path) (static, framework-free)
Laravel facade HolySheet\Laravel\Facades\HolySheet::write($schema, $path)
CLI / agent shell php artisan holy-sheet:write --in=schema.json --out=q4.xlsx (Laravel command)

Need an HTTP route? Build your own controller around the facade — Holy Sheet doesn't ship one. See docs/LaravelAdapter.md for the recommended shape.

License

MIT


All versions of holy-sheet with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-zip Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package particle-academy/holy-sheet contains the following files

Loading the files please wait ...