NoteCat/composer.json

28 lines
535 B
JSON

{
"name": "binarydiv/notecat",
"description": "Note taking app. Like Notepad, but meow!",
"type": "project",
"authors": [
{
"name": "binaryDiv",
"email": "binarydiv@gmail.com"
}
],
"require": {
"php": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"NoteCat\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/unit/"
}
}
}