-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
40 lines (39 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "elimuswift/db-exporter",
"description": "Export your database quickly and easily as a Laravel Migration and all the data as a Seeder class.",
"keywords": ["Export", "PHP", "Database", "Migrations", "Laravel", "Seed", "Command", "Artisan"],
"license": "MIT",
"authors": [
{
"name": "Master Weez",
"email": "wizqydy@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.2",
"illuminate/database": "^5.2",
"illuminate/filesystem": "^5.2"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"orchestra/database": "^3.5"
},
"autoload": {
"psr-4": {
"Elimuswift\\DbExporter\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"DbExporter\\Tests\\" : "tests"
}
},
"extra": {
"laravel" : {
"providers": [
"Elimuswift\\DbExporter\\DbExportHandlerServiceProvider"
]
}
}
}