forked from omnilight/yii2-scheduling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 951 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
46
{
"name": "trendyminds/yii2-scheduling",
"version": "2.1.3",
"license": "MIT",
"description": "Scheduling extension for Yii2 framework",
"keywords": [
"yii",
"scheduling",
"cron"
],
"authors": [
{
"name": "Pavel Agalecky",
"email": "pavel.agalecky@gmail.com"
}
],
"type": "yii2-extension",
"require": {
"php": "^8.1.0",
"dragonmantank/cron-expression": "1.*",
"symfony/process": "^5.4 || ^6.0 || ^7",
"yiisoft/yii2": "2.0.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.36"
},
"suggest": {
"guzzlehttp/guzzle": "Required to use the thenPing method on schedules (~5.0)."
},
"autoload": {
"psr-4": {
"trendyminds\\scheduling\\": "src"
}
},
"extra": {
"bootstrap": "trendyminds\\scheduling\\Bootstrap"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}