作者 karlet

test

... ... @@ -4,7 +4,8 @@
"require": {},
"autoload": {
"psr-4": {
"Jiaoyin\\": ""
"Jiaoyin\\": "",
"Jiaoyin\\Test": "./test/"
}
}
}
... ...
<?php
namespace Jiaoyin\Test;
class Test{
public function test(){
echo 'test';
}
}
\ No newline at end of file
... ...