Skip to content

Releases: CodeWithSushil/supabase-client

v1.1.0

30 Jan 10:29
Compare
Choose a tag to compare

v1.0.9

28 Jan 11:03
4fb5bf8
Compare
Choose a tag to compare

What's Changed

  • dependabot:(deps-dev): bump phpstan/phpstan from 2.1.0 to 2.1.1 by @dependabot in #3
  • dependabot:(deps-dev): bump phpstan/phpstan from 2.1.1 to 2.1.2 by @dependabot in #4

New Contributors

Full Changelog: v1.0.8...v1.0.9

v1.0.8

01 Jan 00:25
Compare
Choose a tag to compare

Full Changelog: v1.0.7...v1.0.8

v1.0.7

18 Dec 06:54
Compare
Choose a tag to compare

Full Changelog: v1.0.5...v1.0.6

Full Changelog: v1.0.5...v1.0.6

Full Changelog: v1.0.6...v1.0.7

v1.0.4

17 Sep 14:43
Compare
Choose a tag to compare

Supabase for PHP: v1.0.4

  • Add new function pages() for Pagination.
  • Add new function filter() for filtering the data.
  • Add new function matchs() for checking duplicates data from table.
  • Updated Docs as well.

v1.0.3

08 Sep 13:57
Compare
Choose a tag to compare

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