-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
43 lines (43 loc) · 1013 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
{
"name": "yii2mod/yii2-scheduling",
"description": "Scheduling extension for Yii2 framework",
"type": "yii2-extension",
"keywords": [
"yii",
"scheduling",
"cron"
],
"authors": [
{
"name": "Igor Chepurnoi",
"email": "chepurnoi.igor@gmail.com"
}
],
"require": {
"php": ">=5.6",
"yiisoft/yii2": "2.0.*",
"symfony/process": "~3.2",
"mtdowling/cron-expression": "~1.0",
"league/climate": "^3.2",
"guzzlehttp/guzzle": "^6.3",
"nesbot/carbon": "~1.21"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"yii2mod\\scheduling\\": ""
}
},
"extra": {
"bootstrap": "yii2mod\\scheduling\\Bootstrap"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}