-
-
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.76 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.76 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": "zyna/l1",
"description": "This is a forked package from Ntanduy and renoki-co, I plan to maintain this to future laravel version. a Star ⭐⭐⭐⭐ would be enough as a motivation and encouragement for me to continue maintaining this package",
"keywords": [
"Zyna",
"laravel",
"Cloudflare",
"D1",
"Database"
],
"license": "Apache-2.0",
"homepage": "https://github.com/sencin/d1",
"authors": [
{
"name": "Zyna",
"email": "example@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.0|^4.0",
"illuminate/cache": "*",
"illuminate/contracts": "*",
"illuminate/database": "*",
"illuminate/http": "*",
"saloonphp/laravel-http-sender": "^2.0|^3.0",
"saloonphp/laravel-plugin": "^3.5",
"saloonphp/saloon": "^3.10"
},
"autoload": {
"psr-4": {
"Zyna\\CFD1\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zyna\\CFD1\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "stable",
"require-dev": {
"pestphp/pest": "^2.35",
"orchestra/testbench": "^9.3",
"mockery/mockery": "^1.6",
"laravel/legacy-factories": "^1.4"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"suggest": {
"ext-pdo": "Extending the PDO driver for Cloudflare D1 is requireds."
},
"extra": {
"laravel": {
"providers": [
"Zyna\\CFD1\\D1ServiceProvider"
]
}
}
}