-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"name": "knobik/sql-agent",
"description": "Self-learning text-to-SQL agent for Laravel",
"keywords": ["laravel", "sql", "ai", "llm", "text-to-sql", "agent", "eloquent"],
"license": "Apache-2.0",
"authors": [
{
"name": "knobik"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0|^12.0",
"illuminate/database": "^11.0|^12.0",
"illuminate/console": "^11.0|^12.0",
"prism-php/prism": "^0.100"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.27",
"livewire/livewire": "^4.1",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^2.0|^3.0",
"pgvector/pgvector": "^0.2",
"phpstan/phpstan": "^2.1"
},
"suggest": {
"livewire/livewire": "Required for the chat UI",
"pgvector/pgvector": "Required for the pgvector search driver (vector similarity search)",
"prism-php/relay": "Required for MCP server tool integration (relay config)"
},
"autoload": {
"psr-4": {
"Knobik\\SqlAgent\\": "src/",
"Knobik\\SqlAgent\\Database\\": "database/"
}
},
"autoload-dev": {
"psr-4": {
"Knobik\\SqlAgent\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Knobik\\SqlAgent\\SqlAgentServiceProvider"
],
"aliases": {
"SqlAgent": "Knobik\\SqlAgent\\Facades\\SqlAgent"
}
}
},
"scripts": {
"test": "pest",
"test-coverage": "pest --coverage",
"format": "pint",
"format-check": "pint --test",
"analyse": "phpstan analyse --memory-limit=512M"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}