Initialize Composer and PSR‑4 autoloading
This commit is contained in:
parent
61497e79b3
commit
732b0c7e0c
|
|
@ -6,3 +6,6 @@ var/
|
|||
|
||||
# Environment variables:
|
||||
*.env
|
||||
|
||||
# Composer dependencies:
|
||||
/vendor/
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"name": "ramoncaballero.dev/phpstarter",
|
||||
"description": "PHPStarter",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Ramon Caballero",
|
||||
"email": "hello@ramoncaballero.dev"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PHPStarter\\": "src/"
|
||||
}
|
||||
},
|
||||
"require": {}
|
||||
}
|
||||
Loading…
Reference in New Issue