-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.64 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.64 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
{
"name": "sushilk/supabase",
"description": "Supabase client for php",
"keywords": [
"supabase",
"php",
"sdk",
"client"
],
"type": "library",
"require": {
"php": "^8.4",
"guzzlehttp/guzzle": "^7.10"
},
"require-dev": {
"laravel/pint": "^1.29",
"pestphp/pest": "^4.7",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.4",
"tomasvotruba/type-coverage": "^2.1",
"phpstan/extension-installer": "^1.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Sushilk\\Supabase\\": "src/Supabase/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sushil Kumar",
"email": "sushilkumbhar77@gmail.com"
}
],
"suggest": {
"ext-curl": "Required by Guzzle for optimal, high-performance HTTP requests.",
"ext-json": "Required for processing JSON payloads from Supabase API responses."
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"test:lint": "pint",
"test:type": "phpstan analyse",
"test:refactor": "rector",
"test:unit": "pest",
"tests": [
"@test:lint",
"@test:type",
"@test:refactor",
"@test:unit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}