| {
    "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/"
        }
    }
}
 |