sushilk/supabase

Supabase client for php

Maintainers

Package info

github.com/codebysushil/supabase-php

pkg:composer/sushilk/supabase

Fund package maintenance!

CodeWithSushil

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 3

v0.0.2 2026-05-16 07:37 UTC

README

Tests PHP Supabase

Latest Version Total Downloads License

Modern, lightweight, fluent Supabase client for PHP.

Features

  • Fluent Query Builder
  • Supabase REST API Support
  • Async Requests with Guzzle
  • Select, Insert, Update, Delete
  • Filters & Query Operators
  • Authentication Support
  • Typed PHP 8.4+ Codebase
  • PSR Standards
  • Promise-based Async Support
  • Easy Integration with Laravel & Vanilla PHP

Installation

Install via Composer:

composer require sushilk/supabase

Quick start

<?php

require_once(__DIR__ . '/vendor/autoload.php');

use Sushilk\Supabase\Client;
           
$client = new Client(
    'https://<project-id>.supabase.co',
    'apikey'
);

$result = $client->from('users')->select('name, email')->get();

var_dump($result);

Author

Sushil Kumar