PHPackages                             puleeno/rake-laravel-adapter - 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. [Database &amp; ORM](/categories/database)
4. /
5. puleeno/rake-laravel-adapter

ActiveLibrary[Database &amp; ORM](/categories/database)

puleeno/rake-laravel-adapter
============================

The Laravel adapter for Rake migration framework

1.1.0(1y ago)06MITPHP

Since Jan 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/puleeno/rake-laravel-adapter)[ Packagist](https://packagist.org/packages/puleeno/rake-laravel-adapter)[ RSS](/packages/puleeno-rake-laravel-adapter/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Rake Laravel Adapter
====================

[](#rake-laravel-adapter)

Laravel adapter for [Ramphor Rake](https://github.com/ramphor/rake) - A PHP web crawler and data migration framework.

Installation
------------

[](#installation)

You can install the package via composer:

```
#!bash
composer require puleeno/rake-laravel-adapter

```

The package will automatically register its service provider.

Database Migrations
-------------------

[](#database-migrations)

The package includes the necessary database migrations. To run them:

```
#!bash
php artisan migrate

```

This will create the following tables:

- `rake_crawled_urls` - Stores URLs to be crawled
- `rake_resources` - Stores crawled resources
- `rake_relations` - Manages relationships between resources
- `rake_options` - Stores Rake configuration options

Models
------

[](#models)

The package provides Laravel Eloquent models for all tables:

- `CrawledUrl` - For managing crawl URLs
- `Resource` - For managing crawled resources
- `Option` - For managing Rake options
- `Relation` - Pivot model for resource relationships

Example usage:

```
#!php
use Rake\LaravelAdapter\Models\CrawledUrl;
use Rake\LaravelAdapter\Models\Resource;
use Rake\LaravelAdapter\Models\Option;
// Create new crawl URL
CrawledUrl::create([
'url' => 'https://example.com',
'rake_id' => 'my-rake-id',
'tooth_id' => 'my-tooth-id'
]);
// Get uncrawled URLs
$urls = CrawledUrl::where('crawled', false)->get();
// Get resource with relationships
$resource = Resource::with(['children', 'parents'])->find($id);

```

Configuration
-------------

[](#configuration)

You can publish the config file with:

```
bash
php artisan vendor:publish --tag="rake-config"

```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Puleeno Nguyen](https://github.com/puleeno)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance39

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

527d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a609a3b3a36dee9f36ef6f8d3b2b2dc91eebefc7644031e829e65bca4329799?d=identicon)[puleeno](/maintainers/puleeno)

---

Top Contributors

[![puleeno](https://avatars.githubusercontent.com/u/22538657?v=4)](https://github.com/puleeno "puleeno (14 commits)")

### Embed Badge

![Health badge](/badges/puleeno-rake-laravel-adapter/health.svg)

```
[![Health](https://phpackages.com/badges/puleeno-rake-laravel-adapter/health.svg)](https://phpackages.com/packages/puleeno-rake-laravel-adapter)
```

###  Alternatives

[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k117.2M118](/packages/jdorn-sql-formatter)[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)[jfelder/oracledb

Oracle DB driver for Laravel

11518.4k](/packages/jfelder-oracledb)

PHPackages © 2026

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