-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
46 lines (46 loc) · 1.15 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
{
"name": "agontuk/schema-builder",
"description": "Schema designer & migration generator for laravel & lumen",
"version": "1.3.0",
"type": "library",
"keywords": [
"schema",
"database",
"schema builder",
"schema design",
"migration generator"
],
"homepage": "https://github.com/Agontuk/schema-builder",
"license": "MIT",
"authors": [
{
"name": "Iftekhar Rifat",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/Agontuk"
}
],
"require": {
"ext-zip": "*",
"illuminate/filesystem": "^5.1|^6|^7|^8",
"illuminate/http": "^5.1|^6|^7|^8",
"illuminate/support": "^5.1|^6|^7|^8",
"league/flysystem": "^1.0",
"league/flysystem-ziparchive": "^1.0"
},
"require-dev": {
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"Agontuk\\Schema\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Agontuk\\Schema\\SchemaServiceProvider"
]
}
}
}