-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.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": "[email protected]"
}],
"require": {
"php": "^8.2",
"illuminate/console": "^12.0",
"illuminate/support": "^12.0",
"illuminated/helper-functions": "^12.0",
"monolog/monolog": "^3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/finder": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5.3",
"mockery/mockery": "^1.6.10",
"guzzlehttp/guzzle": "^7.8.2",
"orchestra/testbench": "^10.0",
"illuminated/testing-tools": "^12.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
}