forked from dmitry-ivanov/laravel-console-mutex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.28 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
44
45
46
{
"name": "jhowbhz/console-mutex-divulgawhats",
"description": "Mutex for Laravel Console Commands. poweredby divulgawhats",
"keywords": ["laravel", "console", "command", "mutex", "mutex-lock", "semaphore", "locker", "no-overlapping"],
"license": "MIT",
"support": {
"issues": "",
"source": ""
},
"authors": [{
"name": "Jhon",
"email": "jhowjhoe@gmail.com"
}],
"require": {
"php": "^8.0",
"arvenil/ninja-mutex": "dev-master#82cbb2c",
"illuminate/console": "^8.0",
"illuminate/support": "^8.0",
"ramsey/collection": "^1.2"
},
"require-dev": {
"ext-redis": "*",
"ext-pdo_mysql": "*",
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^7.0",
"illuminated/testing-tools": "^9.0",
"predis/predis": "^1.1.9"
},
"autoload": {
"psr-4": {
"Illuminated\\Console\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Illuminated\\Console\\Tests\\": "tests/",
"Illuminated\\Console\\Tests\\App\\": "tests/fixture/app/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}