-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 960 Bytes
/
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
{
"name": "clivern/chunk",
"type": "library",
"description": "Asynchronous Task Queue Based on Distributed Message Passing for PHP.",
"keywords": ["clivern", "chunk"],
"license": "MIT",
"homepage": "https://github.com/clivern/chunk",
"authors": [
{
"name": "Clivern",
"email": "[email protected]",
"homepage": "http://clivern.com",
"role": "Maintainer"
}
],
"require": {
"php":">=7.2",
"php-amqplib/php-amqplib": "^2.11",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.1",
"phpunit/phpunit": "9.5.14",
"clivern/phpcs": "1.0.2"
},
"autoload": {
"psr-4": {
"Clivern\\Chunk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Clivern\\Chunk\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}