{
"name": "yzen.dev/mono-processor",
"version": "1.1",
"description": "This Processor will display in the logs bread crumbs by which you can more quickly and accurately identify the cause of the error.",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"keywords": [ "laravel", "log", "logger", "tap", "monolog", "processor", "breadcrumbs" ],
"authors": [
{
"name": "Andey Iatsenko",
"email": "yzen.dev@gmail.com"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"MonoProcessor\\": "src/"
},
"files": [
"src/Helpers/global/breadcrumbs_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^7.2 || ^8.0",
"illuminate/log": "^v9.0",
"illuminate/auth": "^v9.0",
"illuminate/queue": "^v9.0",
"illuminate/routing": "^v9.0",
"illuminate/http": "^v9.0",
"illuminate/contracts": "^v9.0",
"illuminate/database": "^v9.0",
"illuminate/console": "^v9.0",
"illuminate/support": "^v9.0",
"monolog/monolog": "2.*"
},
"require-dev": {
"phpstan/phpstan": "^0.12.37",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "*"
},
"support": {
"issues": "https://github.com/yzen-dev/mono-processor/issues",
"source": "https://github.com/yzen-dev/mono-processor"
},
"extra": {
"laravel": {
"providers": [
"MonoProcessor\\ServiceProvider"
]
}
},
"scripts": {
"phpunit": [
"./vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml"
],
"phpstan": [
"./vendor/bin/phpstan analyse -c ./phpstan.neon src"
],
"phpcs": [
"./vendor/bin/phpcs --standard=./phpcs.xml -n --no-cache"
]
}
}
|