41 lines
859 B
JSON
41 lines
859 B
JSON
{
|
|
"name": "omnilight/yii2-scheduling",
|
|
"description": "Scheduling extension for Yii2 framework",
|
|
"keywords": [
|
|
"yii",
|
|
"scheduling",
|
|
"cron"
|
|
],
|
|
"minimum-stability": "dev",
|
|
"authors": [
|
|
{
|
|
"name": "Pavel Agalecky",
|
|
"email": "pavel.agalecky@gmail.com"
|
|
}
|
|
],
|
|
"type": "yii2-extension",
|
|
"require": {
|
|
"php": ">=5.4.0",
|
|
"yiisoft/yii2": "2.0.*",
|
|
"symfony/process": "2.6.* || 3.* || 4.* || ^5.0",
|
|
"dragonmantank/cron-expression": "1.*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "4.8.36"
|
|
},
|
|
"suggest": {
|
|
"guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.0)."
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"omnilight\\scheduling\\": "src"
|
|
}
|
|
},
|
|
"extra": {
|
|
"bootstrap": "omnilight\\scheduling\\Bootstrap"
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit"
|
|
}
|
|
}
|