PHPackages                             stephane-monnot/laravel-scheduled-changes - 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. stephane-monnot/laravel-scheduled-changes

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

stephane-monnot/laravel-scheduled-changes
=========================================

A powerful and flexible package to schedule and execute future changes or events in your Laravel application. Manage tasks like content publication, data updates, unpublishing, and more with an easy-to-use interface and robust API support.

032[4 PRs](https://github.com/stephane-monnot/laravel-scheduled-changes/pulls)PHPCI passing

Since Oct 13Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/stephane-monnot/laravel-scheduled-changes)[ Packagist](https://packagist.org/packages/stephane-monnot/laravel-scheduled-changes)[ RSS](/packages/stephane-monnot-laravel-scheduled-changes/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

Laravel scheduled changes
=========================

[](#laravel-scheduled-changes)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4630f16dae748634d81f1c94693b6ea2e1ba10761dea488481333a4eefbfcf03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7374657068616e652d6d6f6e6e6f742f6c61726176656c2d7363686564756c65642d6368616e6765732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/stephane-monnot/laravel-scheduled-changes)[![GitHub Tests Action Status](https://camo.githubusercontent.com/3bb7235002f0cad345925742a0af6e1980767c76aa2b0cc500c8780f5addd17c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7374657068616e652d6d6f6e6e6f742f6c61726176656c2d7363686564756c65642d6368616e6765732f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/stephane-monnot/laravel-scheduled-changes/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/7f3eb707470a5b5ddda7d40824a09ed3ce1f320cac67f44e68007d04ded75615/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7374657068616e652d6d6f6e6e6f742f6c61726176656c2d7363686564756c65642d6368616e6765732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/stephane-monnot/laravel-scheduled-changes/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/327ed721818e7594c2a8d722877db3166866a84d309a42c63622fcb8ff283224/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7374657068616e652d6d6f6e6e6f742f6c61726176656c2d7363686564756c65642d6368616e6765732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/stephane-monnot/laravel-scheduled-changes)

A powerful and flexible package to schedule and execute future changes or events in your Laravel application. Manage tasks like content publication, data updates, unpublishing, and more with an easy-to-use interface and robust API support.

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

[](#installation)

You can install the package via composer:

```
composer require stephane-monnot/laravel-scheduled-changes
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="scheduled-changes-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="scheduled-changes-config"
```

This is the contents of the published config file:

```
return [
    'models' => [
        'schedule_change' => StephaneMonnot\LaravelScheduledChanges\Models\ScheduleChange::class,
        'scheduled_unit' => StephaneMonnot\LaravelScheduledChanges\Models\ScheduledUnit::class,
    ],
    'table_names' => [
        'schedule_changes' => 'schedule_changes',
        'scheduled_units' => 'scheduled_units',
    ],
];
```

Usage
-----

[](#usage)

```
use StephaneMonnot\LaravelScheduledChanges\Models\ScheduleChange;

// Create a article or something else
$article = Article::create([
    'title' => 'New article',
    'content' => 'This is a new article',
    'published' => false,
]);

// Create a new scheduled change
$scheduleChange = ScheduleChange::create([
    'type' => 'change_model_value',
    'payload' => [
        'attribute' => 'published',
        'value' => true,
    ],
    'scheduled_at' => now()->addDays(2),
]);

// Create a new scheduled unit
$scheduledUnit = $scheduleChange->units()->create();
$scheduledUnit->schedulable()->associate($article);

// Add to your scheduler the following command to execute the scheduled changes:
Schedule::command('scheduled-changes:process --dispatch')->everyMinute();
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

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

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Stéphane Monnot](https://github.com/stephane-monnot)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance60

Regular maintenance activity

Popularity7

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 56.5% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/a3f74b50602ad1a57ea0e8efa562d008b416ebfb01c4721df04e614b27a028fd?d=identicon)[nanokaweb](/maintainers/nanokaweb)

---

Top Contributors

[![stephane-monnot](https://avatars.githubusercontent.com/u/6066368?v=4)](https://github.com/stephane-monnot "stephane-monnot (13 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")

### Embed Badge

![Health badge](/badges/stephane-monnot-laravel-scheduled-changes/health.svg)

```
[![Health](https://phpackages.com/badges/stephane-monnot-laravel-scheduled-changes/health.svg)](https://phpackages.com/packages/stephane-monnot-laravel-scheduled-changes)
```

###  Alternatives

[umbrella/boleto

YaBoleto é uma biblioteca para geração de boletos bancários de forma simples em PHP.

3431.2k](/packages/umbrella-boleto)

PHPackages © 2026

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