supabase-php

Supabase for PHP client. Realtime Database and Storages.

MIT License

Stars
2
Committers
3

Bot releases are hidden (Show)

supabase-php - v1.0.4

Published by Ashishkumbhar01 about 1 month ago

Supabase client for PHP: v1.0.4

  • Updated Docs and added new functions by @CodeWithSushil
  • Supabase Auth function coming soon.
supabase-php - v1.0.3

Published by Ashishkumbhar01 about 1 month ago

Supabase client for PHP

Release version: v1.0.3

Note
Remove the repeated function of cURL.
Rewrite again Functions class and optimized code base.
Next release we integrate Auth and Storage classes.

Docs

  • updated Docs as well.
<?php
// use Supabase\Supabase\Supabase;
use Supabase\Functions;

require_once("/vendor/autoload.php");

$url = $_ENV['SB_URL];
$api_key = $_ENV['SB_APIKEY'];

$client = new Functions($url, $api_key);
$data = $client->getAllData('users');
var_dump($data);
?>
supabase-php - v1.0.2

Published by Ashishkumbhar01 about 1 month ago

Rename all functions name.

supabase-php - v1.0.1

Published by Ashishkumbhar01 about 1 month ago

Supabase Client: v1.0.1

Code Optomize and add new function of cURL

$ch = curl_init($url);
$opt = array(CURLOPT_TIMEOUT => 120);
curl_setopt_array($ch, $opt);

Read here PHP Docs.

supabase-php - supabase client v1.0.0. Latest Release

Published by Ashishkumbhar01 2 months ago

This supabase’s php client helpfull for you for your php projects(Web Apps, Websites).