Skip to content

Commit 4565751

Browse files
author
Nicolas Boisvert
committed
Initial commit
0 parents  commit 4565751

File tree

9 files changed

+2560
-0
lines changed

9 files changed

+2560
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor
2+
/public/storage
3+
Homestead.yaml
4+
Homestead.json
5+
.env
6+
**/.DS_Store

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Laravel DB Import

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "nicklayb/laravel-db-import",
3+
"description": "Laravel database import package for easy manipulations",
4+
"type": "package",
5+
"require": {
6+
"laravel/laravel": "^5"
7+
},
8+
"authors": [
9+
{
10+
"name": "Nicolas Boisvert",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"autoload": {
15+
"psr-4": {
16+
"Nicklayb\\LaravelDbImport\\": "src/",
17+
},
18+
}
19+
}
20+
Nicklayb\LaravelDbImport

0 commit comments

Comments
 (0)