Files
IronKanban/composer.json
T
Keith Solomon 92e78e28e6 🐞 fix: Linting cleanup
2026-03-22 22:35:04 -05:00

27 lines
579 B
JSON

{
"name": "keith/ironkanban",
"type": "project",
"require": {
"php": "^8.2",
"symfony/yaml": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"IronKanban\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IronKanban\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"lint": "phpcs --standard=phpcs.xml --report=full --report-file=phpcs-results.txt .",
"lint:fix": "phpcbf --standard=phpcs.xml ."
}
}