Releases: CodeWithSushil/supabase-client
Releases · CodeWithSushil/supabase-client
v1.1.0
Full Changelog: v1.0.9...v1.1.0
v1.0.9
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
- @dependabot made their first contribution in #3
Full Changelog: v1.0.8...v1.0.9
v1.0.8
Full Changelog: v1.0.7...v1.0.8
v1.0.7
v1.0.4
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
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);
?>