forked from supabase-community/supabase-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 809 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "supabase/supabase-php",
"type": "library",
"description": "Supabase client for PHP",
"keywords": ["supabase","supabasephp"],
"homepage": "https://github.com/supabase-community/storage-php",
"autoload": {
"psr-0": { "": "src/" },
"psr-4": {
"Supabase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Supabase\\Test\\": "tests/"
}
},
"authors": [
{
"name": "norm",
"email": "norm@zerocopylabs.com"
}
],
"require-dev": {
"phpunit/phpunit": "9.6"
},
"require": {
"supabase/functions-php": "0.0.3",
"supabase/storage-php": "0.0.2",
"supabase/gotrue-php": "0.0.2",
"supabase/postgrest-php": "0.0.3"
}
}