JayBizzle / Laravel-Crawler-Detect by JayBizzle

A Laravel package to detect web crawlers via the user agent
1,534,256
298
13
Package Data
Maintainer Username: JayBizzle
Maintainer Contact: mbeech@mark-beech.co.uk (Mark Beech)
Package Create Date: 2015-03-18
Package Last Update: 2022-07-06
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:11:51
Package Statistics
Total Downloads: 1,534,256
Monthly Downloads: 34,744
Daily Downloads: 1,670
Total Stars: 298
Total Watchers: 13
Total Forks: 29
Total Open Issues: 2

Laravel Crawler Detect

Build Status Total Downloads Scrutinizer Code Quality StyleCI

A Laravel wrapper for CrawlerDetect - the web crawler detection library

Installation

Run composer require jaybizzle/laravel-crawler-detect 1.* or add "jaybizzle/laravel-crawler-detect": "1.*" to your composer.json file.

The last version compatible with Laravel 4 was v1.0.2 so if you need that, you will have to fix your composer.json to that specific version.

Add the following to the providers array in your config/app.php file..

  Jaybizzle\LaravelCrawlerDetect\LaravelCrawlerDetectServiceProvider::class,

...and the following to your aliases array...

  'Crawler'   => Jaybizzle\LaravelCrawlerDetect\Facades\LaravelCrawlerDetect::class,

Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

Usage

use Crawler;

// Check current 'visitors' user agent
if(Crawler::isCrawler()) {
  // true if crawler user agent detected
}


// Pass a user agent as a string
if(Crawler::isCrawler('Mozilla/5.0 (compatible; aiHitBot/2.9; +https://www.aihitdata.com/about)')) {
  // true if crawler user agent detected
}