TaskerBridges/composer.json
Funky Waddle da1efaba55
Some checks are pending
CI / tasker-bridges (8.2) (push) Waiting to run
CI / tasker-bridges (8.3) (push) Waiting to run
feat: complete TaskerBridges with Symfony, Laravel, and Native adapters
2026-02-22 03:57:50 -06:00

34 lines
963 B
JSON

{
"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/"
}
}
}