{
    "name": "your-vendor/swayam-ai-chatbot",
    "description": "WordPress Swayam AI Chatbot plugin using LLPhant, Llama 3.2, and Elasticsearch",
    "type": "wordpress-plugin",
    "license": "GPL-2.0-or-later",
    "require": {
        "php": "^8.2",
        "theodo-group/llphant": "^0.11.12",
        "elasticsearch/elasticsearch": "^9.3"
    },
    "require-dev": {
        "phpunit/phpunit": "^10.5",
        "mockery/mockery": "^1.6"
    },
    "autoload": {
        "psr-4": {
            "SwayamAiChatbot\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "SwayamAiChatbot\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "post-install-cmd": [
            "@remove-pclzip"
        ],
        "post-update-cmd": [
            "@remove-pclzip"
        ],
        "remove-pclzip": "rm -f vendor/phpoffice/phpword/src/PhpWord/Shared/PCLZip/pclzip.lib.php",
        "test": "phpunit",
        "test:unit": "phpunit --testsuite Unit",
        "test:integration": "phpunit --testsuite Integration",
        "test:coverage": "phpunit --coverage-html tests/coverage"
    },
    "config": {
        "allow-plugins": {
            "php-http/discovery": true
        },
        "optimize-autoloader": true
    }
}
