{
    "name": "nuwave/lighthouse",
    "type": "library",
    "description": "A framework for serving GraphQL from Laravel",
    "keywords": [
        "graphql",
        "laravel",
        "laravel-graphql"
    ],
    "homepage": "https://lighthouse-php.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Christopher Moore",
            "email": "chris@nuwavecommerce.com",
            "homepage": "https://www.nuwavecommerce.com"
        },
        {
            "name": "Benedikt Franke",
            "email": "benedikt@franke.tech",
            "homepage": "https://franke.tech"
        }
    ],
    "require": {
        "php": ">= 7.1",
        "ext-json": "*",
        "illuminate/auth": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/bus": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/contracts": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/http": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/pagination": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/queue": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/routing": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "illuminate/validation": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "nesbot/carbon": "^1.26.0 || ^2.0",
        "webonyx/graphql-php": "^0.13.2"
    },
    "require-dev": {
        "bensampo/laravel-enum": "^1.28.3 || ^2.0 || ^3.0",
        "ergebnis/composer-normalize": "^2.2.2",
        "haydenpierce/class-finder": "^0.4",
        "laravel/framework": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "laravel/lumen-framework": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0 || ^8.0",
        "laravel/scout": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
        "mll-lab/graphql-php-scalars": "^2.1",
        "mockery/mockery": "^1.0",
        "nunomaduro/larastan": "^0.6.0",
        "orchestra/testbench": "3.5.* || 3.6.* || 3.7.* || 3.8.* || 3.9.* || ^4.0 || ^5.0 || ^6.0",
        "phpbench/phpbench": "^0.17.0",
        "phpstan/phpstan-mockery": "^0.12.5",
        "phpunit/phpunit": "^6.5 || ^7.5 || ^8.4",
        "pusher/pusher-php-server": "^3.2"
    },
    "suggest": {
        "bensampo/laravel-enum": "Convenient enum definitions that can easily be registered in your Schema",
        "haydenpierce/class-finder": "Required for the artisan command lighthouse:validate-schema",
        "laravel/scout": "Required for the @search directive",
        "mll-lab/graphql-php-scalars": "Useful scalar types, required for @whereConditions",
        "mll-lab/laravel-graphql-playground": "GraphQL IDE for better development workflow - integrated with Laravel"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "providers": [
                "Nuwave\\Lighthouse\\LighthouseServiceProvider",
                "Nuwave\\Lighthouse\\OrderBy\\OrderByServiceProvider",
                "Nuwave\\Lighthouse\\SoftDeletes\\SoftDeletesServiceProvider"
            ],
            "aliases": {
                "graphql": "Nuwave\\Lighthouse\\GraphQL"
            }
        }
    },
    "autoload": {
        "psr-4": {
            "Nuwave\\Lighthouse\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/",
            "Benchmarks\\": "benchmarks"
        }
    },
    "scripts": {
        "bench": "phpbench run",
        "stan": "phpstan analyse --memory-limit 2048M",
        "test": "phpunit --colors=always",
        "test:integration": "phpunit --colors=always --testsuite Integration",
        "test:unit": "phpunit --colors=always --testsuite Unit"
    },
    "support": {
        "issues": "https://github.com/nuwave/lighthouse/issues",
        "source": "https://github.com/nuwave/lighthouse"
    }
}
