-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.06 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.06 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
81
{
"name": "mrfelipemartins/helix",
"description": "Helix is a vector similarity search engine and dashboard for Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Felipe Martins",
"email": "mrfelipemartins@gmail.com"
}
],
"autoload": {
"psr-4": {
"MrFelipeMartins\\Helix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MrFelipeMartins\\Helix\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"MrFelipeMartins\\Helix\\HelixServiceProvider"
]
}
},
"require": {
"php": "^8.2",
"illuminate/auth": "^11.0|^12.0",
"illuminate/cache": "^11.0|^12.0",
"illuminate/config": "^11.0|^12.0",
"illuminate/console": "^11.0|^12.0",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/database": "^11.0|^12.0",
"illuminate/events": "^11.0|^12.0",
"illuminate/http": "^11.0|^12.0",
"illuminate/queue": "^11.0|^12.0",
"illuminate/redis": "^11.0|^12.0",
"illuminate/routing": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0",
"illuminate/view": "^11.0|^12.0",
"centamiv/vektor": "^2.0",
"livewire/livewire": "^3.7|^4.0",
"livewire/volt": "^1.10"
},
"require-dev": {
"laravel/pint": "^1.27",
"orchestra/testbench": "^10.8",
"phpstan/phpstan": "^1.12.21",
"pestphp/pest": "^2.0|^3.0|^4.0",
"pestphp/pest-plugin-laravel": "^2.2|^3.0|^4.0",
"mockery/mockery": "^1.0",
"pestphp/pest-plugin-browser": "^4.2"
},
"scripts": {
"post-autoload-dump": "@prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"@build",
"@php vendor/bin/testbench serve"
],
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/pest"
],
"pretty": [
"@php vendor/bin/pint",
"npx prettier --write \"resources/views/**/*.{php,blade.php}\""
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}