-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
50 lines (50 loc) · 1.54 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
47
48
49
50
{
"name": "illuminated/console-logger",
"description": "Logging and Notifications for Laravel Console Commands.",
"keywords": ["laravel", "console", "command", "logger", "notifications", "email-notifications", "error-handling", "guzzle-middleware"],
"license": "MIT",
"support": {
"issues": "https://github.com/dmitry-ivanov/laravel-console-logger/issues",
"source": "https://github.com/dmitry-ivanov/laravel-console-logger"
},
"authors": [{
"name": "Dmitry Ivanov",
"email": "dmitry.g.ivanov@gmail.com"
}],
"require": {
"php": "^8.1",
"illuminate/console": "^10.0",
"illuminate/support": "^10.0",
"illuminated/helper-functions": "^10.0",
"monolog/monolog": "^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/finder": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.5.1",
"guzzlehttp/guzzle": "^7.5",
"orchestra/testbench": "^8.0",
"illuminated/testing-tools": "^10.0"
},
"autoload": {
"files": [
"integrations/autoload.php"
],
"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
}