-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.96 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 1.96 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
{
"name": "artisansdk/sqlite",
"description": "A virtual table extension for Laravel Eloquent models to enable FTS5 and Vec0 search indexes.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel LaBarge",
"email": "daniel@artisanmade.io"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.4",
"illuminate/database": "~13.0",
"illuminate/support": "~13.0",
"phpoption/phpoption": "~1.9",
"ramsey/uuid": "~4.7",
"vlucas/phpdotenv": "~5.6"
},
"require-dev": {
"fakerphp/faker": "~1.24",
"illuminate/http": "~13.0",
"laravel/ai": "~0.7",
"laravel/pint": "~1.27",
"nunomaduro/phpinsights": "~2.14",
"pestphp/pest": "~4.0",
"phpstan/phpstan": "~2.1"
},
"autoload": {
"psr-4": {
"ArtisanSdk\\SQLite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ArtisanSdk\\SQLite\\Provider"
]
}
},
"scripts": {
"check": [
"@php vendor/bin/phpstan analyse -c phpstan.neon"
],
"coverage": [
"@php vendor/bin/pest --coverage"
],
"fix": [
"@php vendor/bin/pint --config pint.json"
],
"insights": [
"@php vendor/bin/phpinsights"
],
"test": [
"@php vendor/bin/pest --no-coverage"
],
"retry": [
"@php vendor/bin/pest --no-coverage --stop-on-error --stop-on-failure --retry"
]
}
}