PHPackages                             c4pone/yolo\_crawler - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. c4pone/yolo\_crawler

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

c4pone/yolo\_crawler
====================

An event based domain crawler

2391PHP

Since Mar 2Pushed 11y agoCompare

[ Source](https://github.com/c4pone/yolo_crawler)[ Packagist](https://packagist.org/packages/c4pone/yolo_crawler)[ RSS](/packages/c4pone-yolo-crawler/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#yolo crawler

Status LabelStatus ValueBuild[![Build Status](https://camo.githubusercontent.com/8d122c1ef2662f7b6ec8674efeaed569605dd1a7c57d056b6d69c59247a7eff5/68747470733a2f2f7472617669732d63692e6f72672f6334706f6e652f796f6c6f5f637261776c65722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/c4pone/yolo_crawler)Code Quality[![Scrutinizer Code Quality](https://camo.githubusercontent.com/0d334618108a611cc294d70cc84a01430473024a02b29cca450a2b7d3e962e3a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6334706f6e652f796f6c6f5f637261776c65722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/c4pone/yolo_crawler/?branch=master)find broken links example
-------------------------

[](#find-broken-links-example)

```
require 'bootstrap/autoload.php';

use WP\Crawler\LinkFinder;
use WP\Crawler\DomainCrawler;
use WP\Crawler\Queue\QueueManager;
use WP\Crawler\Queue\ArrayQueue;
use WP\Crawler\Queue\Store\ArrayStore;
use WP\Crawler\Queue\Validator\ValidFileExtension;
use WP\Crawler\Queue\Validator\NoPseudoUrl;
use WP\Crawler\Event\LogSubscriber;
use WP\Crawler\Event\BrokenLinkFinderSubscriber;
use Symfony\Component\EventDispatcher\EventDispatcher;

if (isset($argv[1])) {
    $domain = $argv[1];

    $manager = new QueueManager(new ArrayQueue(), new ArrayStore());
    $manager->addValidator(new NoPseudoUrl())
        ->addValidator(new ValidFileExtension());

    $crawler = new DomainCrawler(
        $manager,
        new LinkFinder()
    );

    if (isset($argv[2]))
        $crawler->setWaitTime($argv[2]);

    $dispatcher = $crawler->getEventDispatcher();
    $dispatcher->addSubscriber(new LogSubscriber);
    $dispatcher->addSubscriber(new BrokenLinkFinderSubscriber);

    $crawler->crawl($domain);

} else {
    echo "\n";
    echo ("Usage " . $argv[0] . ' {domain} {time to wait}' . "\n");
}
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7a85051eff05b8c3983693f39170f345ff38d95ae316ccd007ec5ca15776aa6c?d=identicon)[floriank](/maintainers/floriank)

### Embed Badge

![Health badge](/badges/c4pone-yolo-crawler/health.svg)

```
[![Health](https://phpackages.com/badges/c4pone-yolo-crawler/health.svg)](https://phpackages.com/packages/c4pone-yolo-crawler)
```

###  Alternatives

[fetchleo/laravel-xml

Convert Eloquent models to XML, as well as normal objects.

104.2k](/packages/fetchleo-laravel-xml)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
