-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "vectorial1024/laravel-process-async",
"description": "Utilize Laravel Process to run PHP code asynchronously.",
"keywords": [
"laravel",
"background",
"bg",
"async",
"multi-processing",
"process",
"spawn",
"task",
"job",
"concurrency"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Vectorial1024\\LaravelProcessAsync\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vectorial1024\\LaravelProcessAsync\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Vectorial1024"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"laravel/serializable-closure": "^1.0",
"loophp/phposinfo": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^10",
"orchestra/testbench": "^8.0|^9.0",
"laravel/laravel": "^11.0"
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"extra": {
"laravel": {
"providers": [
"Vectorial1024\\LaravelProcessAsync\\ProcessAsyncServiceProvider"
]
}
}
}