-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 860 Bytes
/
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
{
"name": "levizoesch/laravel-check-migrations",
"type": "project",
"license": "MIT",
"description": "A Laravel command scans your application for pending migrations, providing a clear overview of what needs to be migrated.\nYou can then choose to run individual migrations or skip them as needed, short-cutting and optimizing your development workflow.",
"keywords": [
"Levi Zoesch",
"laravel",
"laravel commands",
"laravel helpers",
"Laravel Check Migrations"
],
"require": {
"php": "^7.0|^8.0"
},
"autoload": {
"psr-4" : {
"levizoesch\\checkmigrations\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"levizoesch\\checkmigrations\\CheckMigrationsServiceProvider"
]
}
}
}