forked from php-task/php-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 870 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
{
"name": "php-task/php-task",
"description": "Library to work with synchronous and asynchronous tasks in php.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Johannes Wachter",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0 || ^8.1",
"doctrine/collections": "^1.0",
"ramsey/uuid": "^3.1 || ^4.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"dragonmantank/cron-expression": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.7",
"psr/log": "^1.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0"
},
"autoload": {
"psr-4": {
"": "src"
}
},
"autoload-dev": {
"psr-4": {
"Task\\Tests\\": "tests"
}
}
}