30 lines
654 B
JSON
30 lines
654 B
JSON
{
|
|
"name": "ksolo/ironkanban",
|
|
"description": "Git-backed markdown kanban board in PHP and vanilla JS.",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^8.1"
|
|
},
|
|
"require-dev": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
|
|
"phpstan/phpstan": "^1.12",
|
|
"phpunit/phpunit": "^11.5",
|
|
"squizlabs/php_codesniffer": "^3.10"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"IronKanban\\": "src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs",
|
|
"stan": "phpstan analyse src public --level=6",
|
|
"test": "phpunit"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|