Skip to content

Commit 929643e

Browse files
committed
Init commit
0 parents  commit 929643e

File tree

7 files changed

+716
-0
lines changed

7 files changed

+716
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea/
2+
vendor/
3+
.DS_Store

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "mcmatters/laravel-db-commands",
3+
"license": "MIT",
4+
"authors": [
5+
{
6+
"name": "Dmitry Borzyonok",
7+
"email": "dima.matters@gmail.com"
8+
}
9+
],
10+
"require": {
11+
"illuminate/support": "5.*",
12+
"illuminate/database": "5.*"
13+
},
14+
"autoload": {
15+
"psr-4": {
16+
"McMatters\\LaravelDbCommands\\": "src/"
17+
}
18+
}
19+
}

0 commit comments

Comments
 (0)