Initialize Composer and PSR‑4 autoloading

This commit is contained in:
Ramon Caballero 2026-04-09 13:44:27 +01:00
parent 61497e79b3
commit 732b0c7e0c
2 changed files with 19 additions and 0 deletions

3
.gitignore vendored
View File

@ -6,3 +6,6 @@ var/
# Environment variables:
*.env
# Composer dependencies:
/vendor/

16
composer.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "ramoncaballero.dev/phpstarter",
"description": "PHPStarter",
"authors": [
{
"name": "Ramon Caballero",
"email": "hello@ramoncaballero.dev"
}
],
"autoload": {
"psr-4": {
"PHPStarter\\": "src/"
}
},
"require": {}
}