Modern modular Supabase SDK for PHP 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| Package | Purpose |
|---|---|
supabase-php/auth | Authentication |
supabase-php/database | PostgreSQL database APIs |
supabase-php/storage | Object storage |
supabase-php/realtime | Realtime WebSockets |
supabase-php/functions | Edge Functions |
supabase-php/vector | AI vector search |
<?phprequire'vendor/autoload.php';
useSupabase\Supabase;
$supabase = newSupabase(
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.