91 lines
3.1 KiB
JSON
91 lines
3.1 KiB
JSON
{
|
|
"name": "nuwave/lighthouse",
|
|
"description": "Lighthouse is a schema first GraphQL package for Laravel applications.",
|
|
"type": "library",
|
|
"keywords": [
|
|
"api",
|
|
"graphql",
|
|
"laravel",
|
|
"laravel-graphql"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "https://lighthouse-php.com",
|
|
"authors": [
|
|
{
|
|
"name": "Christopher Moore",
|
|
"email": "chris@nuwavecommerce.com",
|
|
"homepage": "https://www.nuwavecommerce.com"
|
|
},
|
|
{
|
|
"name": "Benedikt Franke",
|
|
"email": "benedikt@franke.tech",
|
|
"homepage": "https://franke.tech"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/nuwave/lighthouse/issues",
|
|
"source": "https://github.com/nuwave/lighthouse"
|
|
},
|
|
"require": {
|
|
"php": ">= 7.1",
|
|
"ext-json": "*",
|
|
"illuminate/contracts": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"illuminate/http": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"illuminate/pagination": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"illuminate/routing": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"illuminate/validation": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"webonyx/graphql-php": "^0.13.2"
|
|
},
|
|
"require-dev": {
|
|
"bensampo/laravel-enum": "^1.22",
|
|
"laravel/lumen-framework": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
|
|
"laravel/scout": "^4.0",
|
|
"mll-lab/graphql-php-scalars": "^2.1",
|
|
"mockery/mockery": "^1.0",
|
|
"orchestra/database": "3.5.*|3.6.*|3.7.*|3.8.*|3.9.*",
|
|
"orchestra/testbench": "3.5.*|3.6.*|3.7.*|3.8.*|3.9.*",
|
|
"phpbench/phpbench": "@dev",
|
|
"pusher/pusher-php-server": "^3.2",
|
|
"haydenpierce/class-finder": "^0.3.3"
|
|
},
|
|
"suggest": {
|
|
"laravel/scout": "Required for the @search directive",
|
|
"mll-lab/graphql-php-scalars": "Useful scalar types, required for @whereConstraints",
|
|
"mll-lab/laravel-graphql-playground": "GraphQL IDE for better development workflow - integrated with Laravel",
|
|
"bensampo/laravel-enum": "Convenient enum definitions that can easily be registered in your Schema"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Nuwave\\Lighthouse\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/",
|
|
"Benchmarks\\": "benchmarks"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit --colors=always",
|
|
"test:unit": "phpunit --colors=always --testsuite Unit",
|
|
"test:integration": "phpunit --colors=always --testsuite Integration",
|
|
"stan": "phpstan analyse --memory-limit 2048M",
|
|
"bench": "phpbench run"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Nuwave\\Lighthouse\\LighthouseServiceProvider",
|
|
"Nuwave\\Lighthouse\\SoftDeletes\\SoftDeletesServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"graphql": "Nuwave\\Lighthouse\\GraphQL"
|
|
}
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|