Skip to content

Commit 199b0bf

Browse files
2 parents b400227 + 9739687 commit 199b0bf

File tree

10 files changed

+4371
-166
lines changed

10 files changed

+4371
-166
lines changed

.env.example

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
SB_URL=
2-
SB_APIKEY=
1+
# Supabase Config
2+
3+
# Supabase database URL
4+
SB_URL=https://[your].supabase.co
5+
6+
# Supabase Anon or `service_role` API key.
7+
SB_APIKEY= your anon api key

composer.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,20 @@
22
"name": "supabase-php/supabase-client",
33
"description": "Supabase for PHP client.",
44
"keywords": ["supabase","supabase-php","supabase-client"],
5-
"version": "1.0.4",
5+
"version": "1.0.5",
66
"type": "library",
77
"require": {
88
"php": "^7.0||^8.0",
9-
"vlucas/phpdotenv": "^5.6"
9+
"vlucas/phpdotenv": "^5.6",
10+
"guzzlehttp/guzzle": "^7.9"
1011
},
1112
"require-dev": {
1213
"phpstan/phpstan": "^1.12",
1314
"symfony/polyfill-php80": "^1.31",
1415
"symfony/polyfill-ctype": "^1.31",
15-
"symfony/polyfill-mbstring": "^1.31"
16+
"symfony/polyfill-mbstring": "^1.31",
17+
"phpunit/phpunit": "^11.4",
18+
"pestphp/pest": "^3.5"
1619
},
1720
"license": "MIT",
1821
"autoload": {
@@ -43,5 +46,10 @@
4346
]
4447
},
4548
"minimum-stability": "dev",
46-
"prefer-stable": true
49+
"prefer-stable": true,
50+
"config": {
51+
"allow-plugins": {
52+
"pestphp/pest-plugin": true
53+
}
54+
}
4755
}

0 commit comments

Comments
 (0)