-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
45 lines (45 loc) · 935 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "omnilight/yii2-scheduling",
"description": "Scheduling extension for Yii2 framework",
"keywords": [
"yii",
"scheduling",
"cron"
],
"minimum-stability": "dev",
"authors": [
{
"name": "Pavel Agalecky",
"email": "[email protected]"
}
],
"type": "yii2-extension",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "2.0.*",
"symfony/process": "2.6.* || 3.* || 4.*",
"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"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}