add PHP boilerplate
This commit is contained in:
parent
7007922739
commit
5512a19e1f
8 changed files with 1913 additions and 3 deletions
27
composer.json
Normal file
27
composer.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"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/"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue