TaskerBridges/composer.json

34 lines
963 B
JSON
Raw Permalink Normal View History

{
"name": "getphred/tasker-bridges",
"description": "Optional bridges for integrating Phred CLI commands into various PHP console tools.",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"getphred/console-contracts": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"symfony/console": "^6.0 || ^7.0",
"illuminate/console": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0"
},
"repositories": [
{
"type": "path",
"url": "../ConsoleContracts"
}
],
"suggest": {
"getphred/tasker": "To use the PhredBridge with the Tasker runner",
"symfony/console": "To use the SymfonyBridge",
"laminas/laminas-console": "To use the LaminasBridge"
},
"autoload": {
"psr-4": {
"Phred\\TaskerBridges\\": "src/"
}
}
}