first commit

This commit is contained in:
lq 2024-05-13 15:47:31 +08:00
commit d958666d3b
2 changed files with 25 additions and 0 deletions

17
composer.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "baihand/ceshi",
"type": "library",
"license": "Apache",
"autoload": {
"psr-4": {
"Baihand\\Ceshi\\": "src/"
}
},
"authors": [
{
"name": "lq",
"email": "13849061902@qq.com"
}
],
"require": {}
}

8
src/Test.php Normal file
View File

@ -0,0 +1,8 @@
<?php
namespace Baihand\Ceshi;
class Test {
function test () {
echo "this is test massage!";
}
}