{
    "name": "nuwave/lighthouse",
    "description": "A framework for serving GraphQL from Laravel",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "graphql",
        "laravel",
        "laravel-graphql"
    ],
    "authors": [
        {
            "name": "Christopher Moore",
            "email": "chris@nuwavecommerce.com",
            "homepage": "https://www.nuwavecommerce.com"
        },
        {
            "name": "Benedikt Franke",
            "email": "benedikt@franke.tech",
            "homepage": "https://franke.tech"
        }
    ],
    "homepage": "https://lighthouse-php.com",
    "support": {
        "issues": "https://github.com/nuwave/lighthouse/issues",
        "source": "https://github.com/nuwave/lighthouse"
    },
    "require": {
        "php": ">= 7.2",
        "ext-json": "*",
        "haydenpierce/class-finder": "^0.4",
        "illuminate/auth": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/bus": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/contracts": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/http": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/pagination": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/queue": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/routing": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/support": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "illuminate/validation": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "laragraph/utils": "^1",
        "thecodingmachine/safe": "^1 || ^2",
        "webonyx/graphql-php": "^14.7"
    },
    "require-dev": {
        "algolia/algoliasearch-client-php": "^3 || ^4",
        "bensampo/laravel-enum": "^1.28.3 || ^2 || ^3 || ^4 || ^5 || ^6",
        "ergebnis/composer-normalize": "^2.2.2",
        "laravel/framework": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9",
        "laravel/legacy-factories": "^1",
        "laravel/lumen-framework": "5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9 || dev-master",
        "laravel/scout": "^7 || ^8 || ^9",
        "mll-lab/graphql-php-scalars": "^4 || ^5",
        "mll-lab/php-cs-fixer-config": "^4.4.1",
        "mockery/mockery": "^1",
        "nunomaduro/larastan": "^0.6 || ^0.7 || ^1 || ^2",
        "orchestra/testbench": "3.6.* || 3.7.* || 3.8.* || 3.9.* || ^4 || ^5 || ^6 || ^7",
        "phpbench/phpbench": "^1",
        "phpstan/phpstan": "~0.12 || ^1",
        "phpstan/phpstan-mockery": "~0.12 || ^1",
        "phpstan/phpstan-phpunit": "~0.12 || ^1",
        "phpunit/phpunit": "^7.5 || ^8.4 || ^9",
        "predis/predis": "^1.1",
        "pusher/pusher-php-server": "^4 || ^5 || ^6 || ^7",
        "rector/rector": "^0.12",
        "thecodingmachine/phpstan-safe-rule": "^1"
    },
    "suggest": {
        "bensampo/laravel-enum": "Convenient enum definitions that can easily be registered in your Schema",
        "laravel/scout": "Required for the @search directive",
        "mll-lab/graphql-php-scalars": "Useful scalar types, required for @whereConditions",
        "mll-lab/laravel-graphiql": "A graphical interactive in-browser GraphQL IDE - integrated with Laravel",
        "pusher/pusher-php-server": "Required when using the Pusher Subscriptions driver"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Nuwave\\Lighthouse\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Benchmarks\\": "benchmarks/",
            "Tests\\": "tests/"
        }
    },
    "config": {
        "allow-plugins": {
            "composer/package-versions-deprecated": true,
            "ergebnis/composer-normalize": true,
            "kylekatarnls/update-helper": true
        },
        "sort-packages": true
    },
    "extra": {
        "laravel": {
            "aliases": {
                "graphql": "Nuwave\\Lighthouse\\GraphQL"
            },
            "providers": [
                "Nuwave\\Lighthouse\\LighthouseServiceProvider",
                "Nuwave\\Lighthouse\\Auth\\AuthServiceProvider",
                "Nuwave\\Lighthouse\\Cache\\CacheServiceProvider",
                "Nuwave\\Lighthouse\\GlobalId\\GlobalIdServiceProvider",
                "Nuwave\\Lighthouse\\OrderBy\\OrderByServiceProvider",
                "Nuwave\\Lighthouse\\Pagination\\PaginationServiceProvider",
                "Nuwave\\Lighthouse\\Scout\\ScoutServiceProvider",
                "Nuwave\\Lighthouse\\SoftDeletes\\SoftDeletesServiceProvider",
                "Nuwave\\Lighthouse\\Validation\\ValidationServiceProvider"
            ]
        }
    },
    "scripts": {
        "post-autoload-dump": [
            "[ -f vendor/bin/testbench ] && vendor/bin/testbench package:discover || true"
        ]
    }
}
