{
    "name": "rebing/graphql-laravel",
    "description": "Laravel wrapper for PHP GraphQL",
    "keywords": ["framework", "laravel", "graphql", "react"],
    "authors": [
        {
            "name": "Rebing OÜ",
            "homepage": "http://www.rebing.ee",
            "role": "Company"
        },
        {
            "name": "Mikk Mihkel Nurges",
            "email": "mikk.nurges@rebing.ee",
            "role": "Developer"
        },
        {
            "name": "Folklore",
            "email": "info@atelierfolklore.ca",
            "homepage": "http://atelierfolklore.ca"
        },
        {
            "name": "David Mongeau-Petitpas",
            "email": "dmp@atelierfolklore.ca",
            "homepage": "http://mongo.ca",
            "role": "Developer"
        },
        {
            "name": "Markus Podar",
            "email": "markus@fischer.name",
            "role": "Developer",
            "homepage": "https://github.com/mfn"
        }
    ],
    "license": "MIT",
    "type": "library",
    "require": {
        "php": "^8.1",
        "ext-json": "*",
        "illuminate/contracts": "^10.0|^11.0",
        "illuminate/support": "^10.0|^11.0",
        "laragraph/utils": "^2.0.1",
        "thecodingmachine/safe": "^2.4",
        "webonyx/graphql-php": "^15.0.3"
    },
    "require-dev": {
        "ext-pdo_sqlite": "*",
        "friendsofphp/php-cs-fixer": "^3",
        "mfn/php-cs-fixer-config": "^2",
        "mockery/mockery": "^1.2",
        "phpstan/phpstan": "^1",
        "larastan/larastan": "^2",
        "orchestra/testbench": "^8.0|^9.0",
        "phpunit/phpunit": "^10.5",
        "thecodingmachine/phpstan-safe-rule": "^1"
    },
    "autoload": {
        "psr-4": {
            "Rebing\\GraphQL\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Rebing\\GraphQL\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "phpstan": "phpstan analyse --memory-limit=512M --error-format=raw",
        "phpstan-baseline": "phpstan analyse --memory-limit=512M --generate-baseline",
        "lint": "php-cs-fixer fix --diff --dry-run",
        "fix-style": "php-cs-fixer fix",
        "tests": "phpunit"
    },
    "extra": {
        "branch-alias": {
            "dev-master": "9.x-dev"
        },
        "laravel": {
            "providers": [
                "Rebing\\GraphQL\\GraphQLServiceProvider"
            ],
            "aliases": {
                "GraphQL": "Rebing\\GraphQL\\Support\\Facades\\GraphQL"
            }
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "config": {
        "preferred-install": "dist",
        "sort-packages": true
    },
    "suggest": {
        "mll-lab/laravel-graphiql": "Easily integrate GraphiQL into your Laravel projects. "
    }
}
