PHPackages                             dedermus/scheduling - 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. dedermus/scheduling

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

dedermus/scheduling
===================

Task scheduling extension for Laravel open-admin-core

2.0.2(1y ago)0171MITPHPPHP ^8.2

Since Jun 7Pushed 1y agoCompare

[ Source](https://github.com/dedermus/scheduling)[ Packagist](https://packagist.org/packages/dedermus/scheduling)[ Docs](https://github.com/dedermus/scheduling)[ RSS](/packages/dedermus-scheduling/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

Scheduling task manager for open-admin-core
===========================================

[](#scheduling-task-manager-for-open-admin-core)

[![StyleCI](https://camo.githubusercontent.com/769edbb588c57d9f389b4d14a621dcd38980c65598044ce3ee6600a005032981/68747470733a2f2f7374796c6563692e696f2f7265706f732f3435373938323337382f736869656c643f6272616e63683d6d61696e)](https://styleci.io/repos/457982378)[![Packagist](https://camo.githubusercontent.com/8475dbd29d9ec62358cab0b2e0ca82a93131fd895b5b22c6990bffcd27d1e8f1/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6f70656e2d61646d696e2d6f72672f7363686564756c696e672e7376673f6d61784167653d32353932303030267374796c653d666c61742d73717561726526636f6c6f723d627269676874677265656e)](https://packagist.org/packages/open-admin-ext/scheduling)[![Total Downloads](https://camo.githubusercontent.com/bba49071c89b1fa7a8653bc368b577228d5ab678a26cbcfc7af2f238b1e45ce8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f70656e2d61646d696e2d6578742f7363686564756c696e672e7376673f7374796c653d666c61742d73717561726526636f6c6f723d627269676874677265656e)](https://packagist.org/packages/open-admin-admin-ext/scheduling)![Pull request welcome](https://camo.githubusercontent.com/773a3fa745da4fda1b5c5179d6885c35d05b5ee83473d301bcba61af9b649e63/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f70722d77656c636f6d652d677265656e2e7376673f7374796c653d666c61742d73717561726526636f6c6f723d627269676874677265656e)

A web interface for manage task scheduling in laravel.

[Documentation](http://open-admin.org/docs/en/extension-scheduling)

Screenshot
----------

[](#screenshot)

[![extention-schedualing](https://user-images.githubusercontent.com/86517067/153514589-e6204239-d227-483a-bf4d-c5da2720f038.png)](https://user-images.githubusercontent.com/86517067/153514589-e6204239-d227-483a-bf4d-c5da2720f038.png)

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

[](#installation)

```
$ composer require dedermus/scheduling

$ php artisan admin:import scheduling

```

enter to terminal: `php artisan make:provider ScheduleCommandProvider`

Open `app/Providers/ScheduleCommandProvider.php`.

Add method registerScheduledCommands()

```
/**
* Register scheduled commands from routes/console.php.
*
* @return void
  */
  protected function registerScheduledCommands()
  {
  app()->make('Illuminate\Contracts\Console\Kernel');
  $events = app()->make('Illuminate\Console\Scheduling\Schedule');

  // Load the routes/console.php file
  $consoleRoutes = base_path('/routes/console.php');

  if (File::exists($consoleRoutes)) {
  require $consoleRoutes;
  }
  }
```

add modify method boot()

`$this->registerScheduledCommands();`

Open file `bootstrap/providers.php` and add provider

```
    App\Providers\ScheduleCommandProvider::class,
```

Open `http://your-host/admin/scheduling`.

Try to add a scheduling task in `routes/console.php` like this:

```
Schedule::command('inspire')->everyTenMinutes()->runInBackground();
Schedule::command('route:list')->dailyAt('02:00');
```

Add use `use Illuminate\Support\Facades\Schedule;`

And you can find these tasks in scheduling panel.

Debugging
---------

[](#debugging)

If console shows errors like: `sh: : command not found`Try adding this your .env file: `PHP_BINARY=/path/to/your/php/binaray/`

License
-------

[](#license)

Licensed under [The MIT License (MIT)](LICENSE).

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance40

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% 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 ~101 days

Total

3

Last Release

507d ago

Major Versions

1.0.1 → 2.0.12024-09-09

PHP version history (2 changes)1.0.1PHP ~7.3|~8.0

2.0.1PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/42d5b6e1af612060284f1d52feba723a6304f41f9deb9d801f091d1b789738dc?d=identicon)[dedermus](/maintainers/dedermus)

---

Top Contributors

[![open-admin-org](https://avatars.githubusercontent.com/u/86517067?v=4)](https://github.com/open-admin-org "open-admin-org (5 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (1 commits)")

---

Tags

taskschedulingopen-admin-core

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dedermus-scheduling/health.svg)

```
[![Health](https://phpackages.com/badges/dedermus-scheduling/health.svg)](https://phpackages.com/packages/dedermus-scheduling)
```

###  Alternatives

[phing/phing

PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.

1.2k21.7M876](/packages/phing-phing)[laravel-admin-ext/scheduling

Task scheduling extension for laravel-admin

93247.1k6](/packages/laravel-admin-ext-scheduling)[arara/process

Provides a better API to work with processes on Unix-like systems

16861.7k2](/packages/arara-process)[rewieer/taskschedulerbundle

Task Scheduler with CRON for Symfony

63242.1k](/packages/rewieer-taskschedulerbundle)[xfra35/f3-cron

Job scheduling for the PHP Fat-Free Framework

73107.5k](/packages/xfra35-f3-cron)[ttree/scheduler

Simple task scheduler for Neos Flow Framework

21108.8k1](/packages/ttree-scheduler)

PHPackages © 2026

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