PHPackages                             anonymous-php/yii-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. [Framework](/categories/framework)
4. /
5. anonymous-php/yii-scheduling

ActiveYii-extension[Framework](/categories/framework)

anonymous-php/yii-scheduling
============================

Scheduling extension for Yii 1.1.\* framework

1.0.0(7y ago)01262MITPHPPHP &gt;=7.0.0

Since May 7Pushed 7y agoCompare

[ Source](https://github.com/anonymous-php/yii-scheduling)[ Packagist](https://packagist.org/packages/anonymous-php/yii-scheduling)[ RSS](/packages/anonymous-php-yii-scheduling/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

Schedule extension for Yii 1.1
==============================

[](#schedule-extension-for-yii-11)

This extension is the port of omnilight/yii2-scheduling ()

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require anonymous-php/yii-scheduling "*"

```

or add

```
"anonymous-php/yii-scheduling": "*"
```

to the `require` section of your composer.json.

Description
-----------

[](#description)

This project is inspired by the Laravel's Schedule component and tries to bring it's simplicity to the Yii framework. Quote from Laravel's documentation:

```
In the past, developers have generated a Cron entry for each console command they wished to schedule.
However, this is a headache. Your console schedule is no longer in source control,
and you must SSH into your server to add the Cron entries. Let's make our lives easier.

```

After installation you have to create console command extending `Anonymous\Scheduling\ScheduleCommand` class and implement `schedule()` method with your jobs inside:

```
