Skip to content

Supabase-PHP/supabase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

PHP Supabase Latest Version Total Downloads License

Modern, Fluent, Lightweight and modular Supabase SDK for PHP ecosystem. Powered by independent packages.


✨ Features

  • 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+

📦 Installation

Install full ecosystem:

composer require supabase-php/supabase

🚀 Quick Start

<?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();

🤝 Contributing

  1. Fork repository
  2. Create feature branch
  3. Commit changes
  4. Push branch
  5. Open PR to develop

📜 License

MIT License


❤️ Philosophy

Built for developers who want:

  • Clean APIs
  • Modern architecture
  • Scalable applications
  • AI-ready infrastructure
  • Enterprise-grade reliability
  • Exceptional PHP developer experience

🌐 Links


⭐ Support

If this project helps you, consider giving it a GitHub star.

About

Supabase SDK for PHP ecosystem.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  

Packages

 
 
 

Contributors