-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.17 KB
/
composer.json
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
{
"name": "darkterminal/turso-client-http",
"description": "The Turso Client HTTP library is a PHP wrapper for Turso HTTP Database API",
"license": "MIT",
"version": "v2.9.2",
"autoload": {
"psr-4": {
"Darkterminal\\TursoHttp\\": "src/"
},
"files": [
"src/core/helpers.php"
]
},
"authors": [
{
"name": "Imam Ali Mustofa",
"email": "darkterminal@duck.com",
"role": "Software Freestyle Engineer",
"homepage": "https://github.com/darkterminal"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/darkterminal"
},
{
"type": "other",
"url": "https://saweria.co/darkterminal"
}
],
"require": {
"php": ">=8.1",
"vlucas/phpdotenv": "^5.6",
"monolog/monolog": "^3.7"
},
"require-dev": {
"pestphp/pest": "^2.34"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": [
"./vendor/bin/pest"
]
}
}