forked from maxbrokman/SafeQueue
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
35 lines (35 loc) · 869 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
{
"name": "digbang/safe-queue",
"description": "A Laravel Doctrine friendly daemonising queue worker for Laravel",
"license": "MIT",
"authors": [
{
"name": "Max Brokman",
"email": "max.brokman@vice.com"
},
{
"name": "Dario Govergun",
"email": "dgovergun@digbang.com"
}
],
"require": {
"php": "^7.4 || ^8.0.2",
"illuminate/queue": "^8.0 || ^9.0",
"laravel-doctrine/orm": "^1.7"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^8.5 || ^9.5",
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Digbang\\SafeQueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"test\\Digbang\\SafeQueue\\": "tests/"
}
}
}