composer.jsonphp
{ "name": "light/test", "description": "test", "type": "project", "autoload": { "psr-4": { "app\\": "src" } } }
<?php namespace app; class Test { public function test() { echo "test"; } }
require_once __DIR__ . '/vendor/autoload.php';//即引入了composer的加載