{
    "name": "theodo-group/llphant",
    "description": "LLPhant is a library to help you build Generative AI applications.",
    "keywords": ["php", "openai", "GPT-4", "api", "language", "LLM", "vectorstore", "ollama", "anthropic", "mistral"],
    "license": "MIT",
    "authors": [
        {
            "name": "Maxime Thoonsen"
        }
    ],
    "require": {
        "php": "^8.1.0",
        "guzzlehttp/guzzle": "^7.4.5",
        "guzzlehttp/psr7": "^2.7",
        "openai-php/client": "^v0.13.0",
        "phpoffice/phpword": "^1.4.0",
        "psr/http-message": "^2.0",
        "psr/log": "^3.0",
        "smalot/pdfparser": "^2.11"
    },
    "suggest": {
        "doctrine/orm": "This is required for the DoctrineVectoreStore. This should be working with any version ^2.13.0",
        "symfony/cache": "This is one of the possible types of psr/cache needed by doctrine/orm",
        "hkulekci/qdrant": "This is required for the QdrantVectoreStore.",
        "predis/predis": "This is required for the RedisVectoreStore.",
        "elasticsearch/elasticsearch": "This is required for the ElasticsearchVectoreStore.",
        "codewithkyrian/chromadb-php": "This is required for the ChromaDBVectorStore.",
        "opensearch-project/opensearch-php": "This is required for the OpenSearchVectorStore."
    },
    "require-dev": {
        "codewithkyrian/chromadb-php": "^0.3.0",
        "doctrine/orm": "^2.20.0",
        "elasticsearch/elasticsearch": "^8.15",
        "hkulekci/qdrant": "^v0.5.7",
        "laravel/pint": "v1.15.3",
        "mockery/mockery": "^1.6.12",
        "opensearch-project/opensearch-php": "^2.3",
        "pestphp/pest": "^v2.36.0",
        "pestphp/pest-plugin-arch": "^2.7.0",
        "pestphp/pest-plugin-type-coverage": "2.8.0",
        "phpstan/phpstan": "1.10.55",
        "predis/predis": "^2.2",
        "rector/rector": "^0.16.0",
        "symfony/cache": "^7.2",
        "symfony/var-dumper": "^7.2",
        "symfony/process": "^v7.1.8"
    },
    "autoload": {
        "psr-4": {
            "LLPhant\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "allow-plugins": {
            "pestphp/pest-plugin": true,
            "php-http/discovery": false
        }
    },
    "scripts": {
        "lint": "pint -v src tests",
        "fix-lint": "pint -v --repair src tests",
        "refactor": "rector --debug",
        "test:lint": "pint --test -v",
        "test:refactor": "rector --dry-run ",
        "test:types": "phpstan analyse --ansi --memory-limit 4G",
        "test:type-coverage": "php ./vendor/bin/pest ./tests --type-coverage --min=100 --memory-limit=4G",
        "test:unit": "pest ./tests/Unit --colors=always",
        "test:int": "pest ./tests/Integration --colors=always",
        "test": [
            "@test:lint",
            "@test:refactor",
            "@test:types",
            "@test:type-coverage",
            "@test:unit"
        ]
    },
    "archive": {
        "exclude": ["examples"]
    }
}
