Skip to content

Commit b8d8c10

Browse files
composer
1 parent 14daf86 commit b8d8c10

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.env
22
/vendor/
3-
index.php
3+
composer.lock
4+

composer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "supabase-php/supabase-client",
3+
"description": "Supabase client for PHP.",
4+
"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

Comments
 (0)