-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 811 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"name": "bastinald/laravel-automatic-migrations",
"homepage": "https://github.com/bastinald/laravel-automatic-migrations",
"description": "Automatic Laravel model migrations.",
"license": "MIT",
"authors": [
{
"name": "Kevin Dion",
"email": "bastinald@icloud.com",
"role": "Developer"
}
],
"require": {
"doctrine/dbal": "^2.0",
"laravel/framework": "^8.0",
"livewire/livewire": "^2.0"
},
"autoload": {
"psr-4": {
"Bastinald\\LaravelAutomaticMigrations\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Bastinald\\LaravelAutomaticMigrations\\Providers\\LaravelAutomaticMigrationsProvider"
]
}
}
}