-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.19 KB
/
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
40
41
42
43
{
"name": "gyselroth/mongodb-php-task-scheduler",
"description": " Asynchronous task scheduler for PHP based on MongoDB",
"keywords": ["mongodb", "async", "task-scheduler"],
"homepage": "http://www.github.com/gyselroth/mongodb-php-task-scheduler",
"license": "MIT",
"authors": [
{
"name": "gyselroth",
"email": "mail@gyselroth.com",
"homepage": "http://www.gyselroth.com"
}
],
"autoload": {
"psr-4": {
"TaskScheduler\\": "src",
"TaskScheduler\\Testsuite\\": "tests"
}
},
"require": {
"php": ">=7.1",
"psr/log": "1.*",
"psr/container": "*",
"ext-mongodb": "*",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-sysvmsg": "*",
"mongodb/mongodb": "^1.4.0",
"league/event": "^2.2"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/s-aebischer/php-mongomock"
}
],
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "*",
"helmich/mongomock": "dev-master#6925c67",
"phpstan/phpstan": "^0.8.5"
}
}