{
    "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"],
    "license": "MIT",
    "authors": [
        {
            "name": "Maxime Thoonsen"
        }
    ],
    "require": {
        "php": "^8.1.0",
        "openai-php/client": "^0.6.4",
        "smalot/pdfparser": "^2.7",
        "symfony/cache": "*",
        "symfony/http-foundation": "^6.0.0"
    },
    "suggest": {
        "doctrine/orm": "This is required for the DoctrineVectoreStore. This should be working with any version ^2.13.0"
    },
    "require-dev": {
        "doctrine/orm": "^2.13.0",
        "guzzlehttp/guzzle": "^7.7.0",
        "guzzlehttp/psr7": "^2.5.0",
        "laravel/pint": "^1.11.0",
        "nunomaduro/collision": "^7.7.0",
        "pestphp/pest": "dev-develop as 2.6.2",
        "pestphp/pest-plugin-arch": "^2.2.1",
        "pestphp/pest-plugin-mock": "^2.0.0",
        "pestphp/pest-plugin-type-coverage": "^2.0.0",
        "phpstan/phpstan": "^1.10.25",
        "rector/rector": "^0.16.0",
        "symfony/var-dumper": "^6.3.1"
    },
    "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",
        "refactor": "rector --debug",
        "test:lint": "pint --test -v",
        "test:refactor": "rector --dry-run",
        "test:types": "phpstan analyse --ansi",
        "test:type-coverage": "pest ./tests --type-coverage --min=100",
        "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"]
    }
}
