Move custom app code

Move custom app code (the `src` and `tests` directories) into `app`.
This commit is contained in:
Oliver Davies 2019-10-18 07:40:14 +01:00
parent b9830f8386
commit 10f0f7fd11
4 changed files with 2 additions and 2 deletions

View file

@ -50,12 +50,12 @@
},
"autoload": {
"psr-4": {
"App\\": "src"
"App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
"App\\Tests\\": "app/tests"
}
}
}