-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1002 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1002 Bytes
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
{
"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": "johannes.wachter@massiveart.at"
}
],
"require": {
"php": "^8.0",
"doctrine/collections": "^1.0 || ^2.0",
"symfony/uid": "^5.4 || ^6.3 || ^7.0 || ^8.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0 || ^8.0",
"dragonmantank/cron-expression": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.7",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"phpunit/phpunit": "^9.6.5 || ^10 || ^11",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpspec/prophecy": "^1.14"
},
"autoload": {
"psr-4": {
"": "src"
}
},
"autoload-dev": {
"psr-4": {
"Task\\Tests\\": "tests"
}
}
}