forked from Ashishkumbhar01/supabase-php
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.54 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.54 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://getcomposer.org/schema.json",
"name": "supabase-php/supabase-client",
"description": "Supabase client for PHP.",
"keywords": [
"supabase",
"supabase-php",
"supabase-client",
"supabase-sdk"
],
"type": "library",
"require": {
"php": "^8.2.0",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"pestphp/pest": "^3.8",
"phpstan/phpstan": "^2.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Supabase\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Supabase\\Tests\\": "tests/"
}
},
"support": {
"source": "https://github.com/CodeWithSushil/supabase-client/releases",
"issues": "https://github.com/CodeWithSushil/supabase-client/issues"
},
"authors": [
{
"name": "Sushil Kumar",
"email": "sushilkumbhar77@gmail.com",
"role": "Developer"
},
{
"name": "Ashish Kumbhar",
"email": "ashishkumbhar01@hotmail.com",
"role": "Developer"
}
],
"funding": [
{
"type": "Open Collective",
"url": "https://opencollective.com/CodeWithSushil"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}