Skip to content

Commit 4d181c9

Browse files
composer update
1 parent b8d8c10 commit 4d181c9

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

composer.json

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
2+
"$schema": "https://getcomposer.org/schema.json",
23
"name": "supabase-php/supabase-client",
3-
"description": "Supabase client for PHP.",
4+
"description": "Supabase for PHP client.",
5+
"keywords": [
6+
"supabase",
7+
"supabase-php",
8+
"supabase-client",
9+
"supabase-sdk"
10+
],
411
"type": "library",
512
"require": {
613
"vlucas/phpdotenv": "^5.6",
@@ -13,17 +20,37 @@
1320
"license": "MIT",
1421
"autoload": {
1522
"psr-4": {
16-
"SupabasePhp\\SupabaseClient\\": "src/"
23+
"Supabase\\Client\\": "src/"
24+
}
25+
},
26+
"autoload-dev": {
27+
"psr-4": {
28+
"Supabase\\Tests\\": "tests/"
1729
}
1830
},
31+
"support": {
32+
"source": "https://github.com/CodeWithSushil/supabase-client",
33+
"issues": "https://github.com/CodeWithSushil/supabase-client/issues"
34+
},
1935
"authors": [
2036
{
2137
"name": "Sushil Kumar",
22-
"email": "[email protected]"
38+
"email": "[email protected]",
39+
"role": "Developer"
40+
}
41+
],
42+
"funding": [
43+
{
44+
"type": "Opencollective",
45+
"url": "https://opencollective.com/CodeWithSushil"
2346
}
2447
],
25-
"minimum-stability": "stable",
48+
"minimum-stability": "dev",
49+
"prefer-stable": true,
2650
"config": {
51+
"optimize-autoloader": true,
52+
"sort-packages": true,
53+
"preferred-install": "dist",
2754
"allow-plugins": {
2855
"pestphp/pest-plugin": true
2956
}

0 commit comments

Comments
 (0)