-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.47 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.47 KB
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
55
56
57
58
59
{
"name": "leafs/queue",
"description": "A simple queue library for Leaf PHP",
"keywords": [
"job",
"worker",
"queue",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.dev/modules/queues/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\": "src"
},
"files": [
"src/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"leafs/db": "^5.0",
"leafs/redis": "^5.0",
"pestphp/pest": "*",
"friendsofphp/php-cs-fixer": "*",
"leafs/alchemy": "^5.0"
},
"scripts": {
"alchemy": "@php vendor/bin/alchemy all",
"test": "@php vendor/bin/alchemy test",
"lint": "@php vendor/bin/alchemy lint",
"fmt": "@php vendor/bin/alchemy fmt",
"analyse": "@php vendor/bin/alchemy analyse",
"refactor": "@php vendor/bin/alchemy refactor",
"ci": "@php vendor/bin/alchemy ci"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.2",
"dragonmantank/cron-expression": "*",
"leafs/sprout": "^5.0"
}
}