Skip to content

Commit 65eaf27

Browse files
committed
initial commit
0 parents  commit 65eaf27

File tree

5 files changed

+498
-0
lines changed

5 files changed

+498
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# composer vendor dir
2+
/vendor

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "maswahyu/yii2-dumper",
3+
"description": "Yii2 dumper function",
4+
"type": "yii2-extension",
5+
"authors": [
6+
{
7+
"name": "Nur Wahyudin",
8+
"email": "wahyu1790@gmail.com"
9+
}
10+
],
11+
"minimum-stability": "dev",
12+
"require": {
13+
"yiisoft/yii2": "~2.0.14"
14+
},
15+
"autoload": {
16+
"psr-4": {
17+
"maswahyu\\yii2-dumper\\": "src/"
18+
},
19+
"files": ["src/autoload.php"]
20+
}
21+
}

0 commit comments

Comments
 (0)