Skip to content

Commit 3f9dede

Browse files
committed
初始化composer包
1 parent 0ff48e1 commit 3f9dede

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "gmars/infinite-tree",
3+
"description": "a infinite tree library",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "weiyongqiang",
9+
"email": "hayixia606@163.com"
10+
}
11+
],
12+
"minimum-stability": "stable",
13+
"require": {},
14+
"autoload": {
15+
"psr-4": {
16+
"gmars\\infinitetree\\": "src"
17+
}
18+
}
19+
}

src/InfiniteTree.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: hayix
5+
* Date: 2019-06-04
6+
* Time: 18:08
7+
*/
8+
9+
namespace gmars\infinitetree;
10+
11+
12+
class InfiniteTree
13+
{
14+
15+
}

0 commit comments

Comments
 (0)