38 lines
970 B
JSON
38 lines
970 B
JSON
|
|
{
|
||
|
|
"name": "getphred/tasker",
|
||
|
|
"description": "A CLI tool manager for the Phred Framework, designed to streamline development tasks and project management.",
|
||
|
|
"license": "MIT",
|
||
|
|
"type": "library",
|
||
|
|
"require": {
|
||
|
|
"php": "^8.2",
|
||
|
|
"getphred/console-contracts": "dev-master",
|
||
|
|
"getphred/tasker-bridges": "dev-master",
|
||
|
|
"psr/container": "^1.1 || ^2.0"
|
||
|
|
},
|
||
|
|
"require-dev": {
|
||
|
|
"phpunit/phpunit": "^10.0",
|
||
|
|
"phpstan/phpstan": "^1.10",
|
||
|
|
"squizlabs/php_codesniffer": "^3.7"
|
||
|
|
},
|
||
|
|
"autoload": {
|
||
|
|
"psr-4": {
|
||
|
|
"Phred\\Tasker\\": "src/"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"autoload-dev": {
|
||
|
|
"psr-4": {
|
||
|
|
"Phred\\Tasker\\Tests\\": "tests/"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"bin": ["bin/tasker"],
|
||
|
|
"repositories": [
|
||
|
|
{
|
||
|
|
"type": "path",
|
||
|
|
"url": "../ConsoleContracts"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "path",
|
||
|
|
"url": "../TaskerBridges"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|