{
"name": "spiral/interceptors",
"type": "library",
"description": "Spiral Interceptors",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/framework/issues",
"source": "https://github.com/spiral/interceptors",
"docs": "https://spiral.dev/docs",
"chat": "https://discord.gg/V6EK4he"
},
"keywords": ["interceptors", "aop", "spiral"],
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Butchnev (butschster)",
"homepage": "https://github.com/butschster"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"require": {
"php": ">=8.1",
"spiral/core": "^3.17",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.41",
"vimeo/psalm": "^6.0",
"spiral/testing": "^2.12"
},
"autoload": {
"psr-4": {
"Spiral\\Interceptors\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Tests\\Interceptors\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.17.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always"
],
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=runtime/phpunit/logs/clover.xml --color=always"
]
}
}
|