-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.91 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "initphp/queue",
"description": "The framework-less BabelQueue runtime for plain PHP: a polyglot queue worker loop with URN routing, retries/back-off, dead-letter routing and a database (PDO) transport, built on babelqueue/php-sdk.",
"type": "library",
"license": "MIT",
"keywords": [
"queue",
"worker",
"consumer",
"babelqueue",
"polyglot",
"rabbitmq",
"redis",
"pdo",
"dead-letter",
"initphp"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"homepage": "https://github.com/InitPHP/Queue",
"support": {
"issues": "https://github.com/InitPHP/Queue/issues",
"source": "https://github.com/InitPHP/Queue",
"docs": "https://github.com/InitPHP/Queue/tree/main/docs"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"babelqueue/php-sdk": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0",
"phpstan/phpstan": "^2.0",
"mockery/mockery": "^1.6",
"predis/predis": "^2.2",
"php-amqplib/php-amqplib": "^3.5",
"friendsofphp/php-cs-fixer": "^3.65"
},
"suggest": {
"ext-pdo": "Required by the PDO (database-backed) transport.",
"ext-pcntl": "Enables graceful worker shutdown on SIGINT/SIGTERM.",
"predis/predis": "Pure-PHP Redis client for the Redis transport (no extension needed).",
"php-amqplib/php-amqplib": "For the RabbitMQ (AMQP) transport."
},
"autoload": {
"psr-4": {
"InitPHP\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Queue\\Tests\\": "tests/"
}
},
"bin": [
"bin/queue"
],
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"stan": "phpstan analyse --no-progress",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"ci": [
"@cs-check",
"@stan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run PHPUnit and produce an HTML coverage report under build/coverage.",
"stan": "Run PHPStan at the level configured in phpstan.neon.dist.",
"cs-check": "Report any PHP-CS-Fixer violations without modifying files.",
"cs-fix": "Apply PHP-CS-Fixer fixes in-place.",
"ci": "Run the full local CI bundle: cs-check, stan, test."
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "2.0.x-dev"
}
}
}