27 lines
579 B
JSON
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 ."
|
|
}
|
|
}
|