forked from vuongxuongminh/yii2-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 925 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": "vxm/yii2-async",
"description": "Provide an easy way to run code asynchronously for Yii2 application",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"yii2-async",
"async",
"php-async"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Vuong Minh",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"yiisoft/yii2": "~2.0.13",
"spatie/async": "~1.0.0"
},
"require-dev": {
"symfony/stopwatch": "^4.0"
},
"autoload": {
"psr-4": {
"vxm\\async\\": "/src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}