forked from mohammed-io/generate-migrations-hook
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.08 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
41
42
43
44
45
46
47
{
"name": "izarmx/voyager-migration-generator",
"description": "This package autogenerates migrations out of database schema changes done through Voyager",
"license": "MIT",
"homepage": "https://github.com/izarmx/voyager-migration-generator",
"keywords": ["voyager","laravel","migrations","migration"],
"authors": [
{
"name": "Daniel Portales R.",
"email": "dan@izar.digital",
"homepage": "https://techspeak.dev",
"role": "Developer"
},
{
"name": "Mohammed A.",
"email": "mohammed-io@outlook.com",
"homepage": "https://mohammed-io.github.io/",
"role": "Original Developer"
}
],
"require": {
"php": "^7.0.0",
"tcg/voyager": "^1.2",
"laravel/framework": "^5.5"
},
"autoload": {
"psr-4": {
"Izar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Izar\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Izar\\MigrationGeneratorServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"mockery/mockery": "^1.2"
}
}