<?php



/**
 * 
 * 
 * 1-create composer.json
 * 2-create a src folder
 * 3-create classes
 * 4-work with 3 ways of autoloading
 * 1-using the different namespaces
 * 
 * 
 */


 require "vendor/autoload.php";


 $order = new Controllers\Order;

 var_dump($order);

echo "<br>";


 $city = new Models\City;


  var_dump($city);


echo "<br>";

$city = new Views\SubViews\User;


  var_dump($city);