summaryrefslogtreecommitdiffstats
path: root/vendor/clue/mq-react/composer.json
blob: 8a83e3443f86e0aa72e96c60d64df393fc505baa (plain)
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
{
    "name": "clue/mq-react",
    "description": "Mini Queue, the lightweight in-memory message queue to concurrently do many (but not too many) things at once, built on top of ReactPHP",
    "keywords": ["Message Queue", "Mini Queue", "job", "message", "worker", "queue", "rate limit", "throttle", "concurrency", "ReactPHP", "async"],
    "homepage": "https://github.com/clue/reactphp-mq",
    "license": "MIT",
    "authors": [
        {
            "name": "Christian Lück",
            "email": "christian@clue.engineering"
        }
    ],
    "require": {
        "php": ">=5.3",
        "react/promise": "^3 || ^2.2.1 || ^1.2.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
        "react/async": "^4 || ^3 || ^2",
        "react/event-loop": "^1.2",
        "react/http": "^1.8"
    },
    "autoload": {
        "psr-4": {
            "Clue\\React\\Mq\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Clue\\Tests\\React\\Mq\\": "tests/"
        }
    }
}