31 lines
762 B
JSON
31 lines
762 B
JSON
{
|
|
"name": "local/ticket-assistant",
|
|
"type": "project",
|
|
"description": "AI-powered support ticket system with Laravel + pgvector + Ollama",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"laravel/framework": "^13.0",
|
|
"guzzlehttp/guzzle": "^7.9",
|
|
"livewire/livewire": "^4.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.0",
|
|
"fakerphp/faker": "^1.23"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
]
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|