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
80 lines (80 loc) · 1.98 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 1.98 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$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",
"license": "MIT",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.11"
},
"require-dev": {
"laravel/pint": "^1.29",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpunit/phpunit": "^13.1",
"tomasvotruba/type-coverage": "^2.2"
},
"autoload": {
"psr-4": {
"Supabase\\Client\\": "src/Supabase/"
}
},
"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",
"role": "Developer"
}
],
"funding": [
{
"type": "Open Collective",
"url": "https://opencollective.com/CodeWithSushil"
},
{
"type": "github",
"url": "https://github.com/CodeWithSushil"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"lint": "pint",
"test:type": "phpstan analyse",
"test:unit": "phpunit",
"test": [
"@test:type",
"@test:unit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}