We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14daf86 commit b8d8c10Copy full SHA for b8d8c10
.gitignore
@@ -1,3 +1,4 @@
1
.env
2
/vendor/
3
-index.php
+composer.lock
4
+
composer.json
@@ -0,0 +1,31 @@
+{
+ "name": "supabase-php/supabase-client",
+ "description": "Supabase client for PHP.",
+ "type": "library",
5
+ "require": {
6
+ "vlucas/phpdotenv": "^5.6",
7
+ "jerome/fetch-php": "^2.0"
8
+ },
9
+ "require-dev": {
10
+ "pestphp/pest": "^3.8",
11
+ "phpstan/phpstan": "^2.1"
12
13
+ "license": "MIT",
14
+ "autoload": {
15
+ "psr-4": {
16
+ "SupabasePhp\\SupabaseClient\\": "src/"
17
+ }
18
19
+ "authors": [
20
+ {
21
+ "name": "Sushil Kumar",
22
+ "email": "[email protected]"
23
24
+ ],
25
+ "minimum-stability": "stable",
26
+ "config": {
27
+ "allow-plugins": {
28
+ "pestphp/pest-plugin": true
29
30
31
+}
0 commit comments