-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.56 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
60
61
62
{
"name": "esoftdream/queue",
"description": "CodeIgniter 4 integration package for Ttpryg Queue Core Engine",
"license": "MIT",
"type": "library",
"keywords": [
"codeigniter",
"codeigniter4",
"queue",
"symfony",
"symfony-messenger",
"job",
"worker"
],
"authors": [
{
"name": "Toto",
"email": "totoprayogo1916@gmail.com",
"role": "Developer"
}
],
"homepage": "https://github.com/esoftdream/queue",
"require": {
"php": "^8.1",
"ttpryg/queue": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"codeigniter4/framework": "^4.6.0,<4.7.0",
"laravel/pint": "^1.0"
},
"suggest": {
"symfony/amqp-messenger": "For AMQP transport (RabbitMQ)",
"symfony/doctrine-messenger": "For Doctrine transport",
"symfony/redis-messenger": "For Redis transport",
"symfony/uid": "For generating unique message IDs"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Esoftdream\\Queue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Esoftdream\\Queue\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"policy": false
},
"scripts": {
"test": "phpunit",
"cs": "vendor/bin/pint --verbose",
"cs-fix": "vendor/bin/pint"
}
}