Skip to content

Commit bc1bdfe

Browse files
committed
Define initial dependencies
1 parent 2666548 commit bc1bdfe

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

composer.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,45 @@
11
{
22
"name": "vectorial1024/laravel-process-async",
33
"description": "Utilize Laravel Process to run PHP code asynchronously.",
4+
"keywords": [
5+
"laravel",
6+
"background",
7+
"bg",
8+
"async",
9+
"multi-processing",
10+
"process",
11+
"spawn",
12+
"task",
13+
"job"
14+
],
415
"type": "library",
516
"license": "MIT",
617
"autoload": {
718
"psr-4": {
819
"Vectorial1024\\LaravelProcessAsync\\": "src/"
920
}
1021
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"Vectorial1024\\LaravelBackgroundAsync\\Tests\\": "tests/"
25+
}
26+
},
1127
"authors": [
1228
{
1329
"name": "Vectorial1024"
1430
}
1531
],
16-
"require": {}
32+
"require": {
33+
"php": "^8.1",
34+
"illuminate/support": "^10.0|^11.0",
35+
"laravel/serializable-closure": "^1.0"
36+
},
37+
"require-dev": {
38+
"phpunit/phpunit": "^10",
39+
"orchestra/testbench": "^8.0|^9.0",
40+
"laravel/laravel": "^10.0|^11.0"
41+
},
42+
"scripts": {
43+
"test": "vendor/bin/phpunit tests"
44+
}
1745
}

0 commit comments

Comments
 (0)