-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1005 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "srwiez/queue-size-health-check",
"description": "Laravel queue size check",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eser DENIZ",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-dom": "*",
"spatie/laravel-health": "^1.23",
"illuminate/support": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"QueueSizeCheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"pestphp/pest": "^2.0",
"symfony/var-dumper": "^6.0|^7.0",
"laravel/pint": "^1.13",
"pestphp/pest-plugin-laravel": "^2.2",
"orchestra/testbench": "^8.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "@php vendor/bin/pint",
"test": "@php vendor/bin/pest",
"qa": [
"@composer lint",
"@composer test"
]
}
}