PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Mateo   Ollama Artificial Intelligence PHP Telegram Bot   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ollama Artificial Intelligence PHP Telegram Bot
Telegram bot to interact with Ollama AI models
Author: By
Last change:
Date: 4 months ago
Size: 861 bytes
 

Contents

Class file image Download
{ "name": "mateo/ollama-bot", "description": "Bot the uses local ollama model", "type": "project", "require": { "mateodioev/tg-handler": "^5.2", "vlucas/phpdotenv": "^5.6", "ext-pdo": "*" }, "require-dev": { "phpunit/phpunit": "^10.5", "friendsofphp/php-cs-fixer": "^3.40" }, "scripts": { "fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -vv", "tests": "./vendor/bin/phpunit -c phpunit.xml test/" }, "scripts-descriptions": { "fix": "Fixes code style using php-cs-fixer" }, "license": "MIT", "autoload": { "psr-4": { "Mateodioev\\OllamaBot\\": "src/" }, "files": [ "src/helpers.php" ] }, "autoload-dev": { "psr-4": { "Test\\": "test/" } } }