Skip to content

Commit 5c5617d

Browse files
committed
Fix Gzip blob
1 parent 35a0390 commit 5c5617d

File tree

7 files changed

+816
-632
lines changed

7 files changed

+816
-632
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,5 @@ public function boot(): void
2020
*/
2121
public function register(): void
2222
{
23-
if ($this->app->environment() !== 'production') {
24-
$this->app->register(IdeHelperServiceProvider::class);
25-
}
2623
}
2724
}

app/Services/Checker.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public function check(?string $url): array
4242
{
4343
$uri = new Uri($url);
4444
$response = $this->fetcher->fetch($uri);
45-
$this->logger->info($this->urlHelper->getRobotsTxtUrl($uri));
4645
$this->robotsFile->setUrl($this->urlHelper->getRobotsTxtUrl($uri));
4746
$crawler = new Crawler($response, $uri);
4847

composer.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,13 @@
1212
"symfony/dom-crawler": "^3.1",
1313
"t1gor/robots-txt-parser": "^0.2.3",
1414
"erusev/parsedown": "^1.6",
15-
"laravel/tinker": "^1.0",
16-
"ext-http": "*",
17-
"ext-dom": "*"
15+
"laravel/tinker": "^1.0"
1816
},
1917
"require-dev": {
2018
"fzaninotto/faker": "~1.4",
2119
"mockery/mockery": "0.9.*",
2220
"phpunit/phpunit": "~5.7",
23-
"laravel/browser-kit-testing": "^1.0",
24-
"barryvdh/laravel-ide-helper": "^2.3"
21+
"laravel/browser-kit-testing": "^1.0"
2522
},
2623
"autoload": {
2724
"classmap": [
@@ -33,8 +30,7 @@
3330
},
3431
"autoload-dev": {
3532
"classmap": [
36-
"tests/TestCase.php",
37-
"tests/BrowserKitTestCase.php"
33+
"tests/TestCase.php"
3834
],
3935
"psr-4": {
4036
"Tests\\": "tests/"

0 commit comments

Comments
 (0)