Modern, Fluent, Lightweight and modular Supabase SDK for PHP ecosystem. Powered by independent packages.
- Modular architecture
- Fluent query builder
- Authentication & JWT
- Storage management
- Realtime subscriptions
- Edge Functions
- AI vector search
- Laravel integration
- Async support
- DTOs & typed responses
- PSR compliant
- Modern PHP 8.3+
Install full ecosystem:
composer require supabase-php/supabase<?php
require 'vendor/autoload.php';
use Supabase\Supabase;
$supabase = new Supabase(
url: 'https://your-project.supabase.co',
apiKey: 'your-anon-key'
);
$users = $supabase
->db()
->table('users')
->select('*')
->execute();- Fork repository
- Create feature branch
- Commit changes
- Push branch
- Open PR to
develop
MIT License
Built for developers who want:
- Clean APIs
- Modern architecture
- Scalable applications
- AI-ready infrastructure
- Enterprise-grade reliability
- Exceptional PHP developer experience
- Packagist: https://packagist.org/packages/supabase-php/supabase
- Supabase: https://supabase.com
If this project helps you, consider giving it a GitHub star.
