-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 KB
/
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
{
"name": "webtoolsnz/yii2-scheduler",
"description": "A scheduled task runner for Yii2 applications",
"keywords": ["yii2", "cron", "scheduler", "task"],
"type": "yii2-extension",
"license": "proprietary",
"homepage": "https://github.com/webtoolsnz/yii2-scheduler",
"authors": [
{
"name": "Byron Adams",
"email": "[email protected]"
},
{
"name": "Webtools Ltd",
"email": "[email protected]",
"homepage": "http://www.webtools.co.nz",
"role": "Developer"
}
],
"require": {
"yiisoft/yii2": "^2.0.9",
"mtdowling/cron-expression": "~1.0",
"webtoolsnz/yii2-widgets": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "~5.0|~4.0",
"phpdocumentor/reflection-docblock" : "^2.0",
"yiisoft/yii2-codeception": "*",
"codeception/codeception": "*",
"codeception/specify": "*",
"codeception/verify": "*"
},
"autoload": {
"psr-4": {
"webtoolsnz\\scheduler\\": "src",
"webtoolsnz\\scheduler\\tests\\": "tests"
}
}
}