Skip to content

Commit 43eb17b

Browse files
committed
Drop old dependencies
1 parent b0ecd4e commit 43eb17b

File tree

3 files changed

+24
-26
lines changed

3 files changed

+24
-26
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ See [GitHub releases](https://github.com/mll-lab/laravel-graphiql/releases).
99

1010
## Unreleased
1111

12+
## v3.0.0
13+
14+
### Removed
15+
16+
- Drop support for Laravel versions older than 9
17+
- Drop support for PHP versions older than 8
18+
1219
## v2.0.3
1320

1421
### Fixed

composer.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.1 || ^8",
18-
"illuminate/console": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9 || ^10",
19-
"illuminate/contracts": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9 || ^10",
20-
"illuminate/support": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9 || ^10"
17+
"php": "^8",
18+
"illuminate/console": "^9 || ^10",
19+
"illuminate/contracts": "^9 || ^10",
20+
"illuminate/support": "^9 || ^10"
2121
},
2222
"require-dev": {
2323
"ergebnis/composer-normalize": "^2.29",
24-
"laravel/lumen-framework": "5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8 || ^9 || ^10",
25-
"mll-lab/php-cs-fixer-config": "^4.4",
26-
"nunomaduro/larastan": "^2.4.1",
27-
"orchestra/testbench": "^4 || ^5 || ^6 || ^7.7 || ^8.8",
24+
"laravel/lumen-framework": "^9 || ^10",
25+
"mll-lab/php-cs-fixer-config": "^5",
26+
"nunomaduro/larastan": "^2.5.2",
27+
"orchestra/testbench": "^7.7 || ^8.8",
2828
"phpstan/extension-installer": "^1",
29-
"phpstan/phpstan": "^1.10.3",
30-
"phpstan/phpstan-mockery": "^1.1",
31-
"phpstan/phpstan-phpunit": "^1.1.1"
29+
"phpstan/phpstan": "^1.10.15",
30+
"phpstan/phpstan-mockery": "^1.1.1",
31+
"phpstan/phpstan-phpunit": "^1.3.11"
3232
},
3333
"minimum-stability": "dev",
3434
"prefer-stable": true,

src/GraphiQLController.php

+6-15
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,18 @@
1111

1212
class GraphiQLController
1313
{
14-
/** @var \Illuminate\Contracts\Routing\UrlGenerator */
15-
protected $urlGenerator;
16-
17-
/** @var \Illuminate\Contracts\View\Factory $ */
18-
protected $viewFactory;
19-
20-
public function __construct(UrlGenerator $urlGenerator, ViewFactory $viewFactory)
21-
{
22-
$this->urlGenerator = $urlGenerator;
23-
$this->viewFactory = $viewFactory;
24-
}
14+
public function __construct(
15+
protected UrlGenerator $urlGenerator,
16+
protected ViewFactory $viewFactory,
17+
) {}
2518

2619
public function __invoke(ConfigRepository $config, Request $request): View
2720
{
2821
// Handle /, /graphiql or graphiql
2922
$path = '/' . trim($request->path(), '/');
3023

31-
$routeConfig = $config->get("graphiql.routes.{$path}");
32-
if (null === $routeConfig) {
33-
throw new NotFoundHttpException("No graphiql route config found for '{$path}'.");
34-
}
24+
$routeConfig = $config->get("graphiql.routes.{$path}")
25+
?? throw new NotFoundHttpException("No graphiql route config found for '{$path}'.");
3526
assert(is_array($routeConfig));
3627

3728
return $this->viewFactory->make('graphiql::index', [

0 commit comments

Comments
 (0)