-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.27 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
48
49
50
51
{
"name": "snowcookie/generate-schema",
"description": "Generate schema from database",
"type": "libary",
"license": "MIT",
"keywords": [
"laravel",
"schema",
"database"
],
"authors": [
{
"name": "Bing Yue Chen",
"email": "[email protected]"
}
],
"homepage": "https://github.com/bingyue-chen/GenerateSchema",
"minimum-stability": "stable",
"require": {
"php": ">=8.1.0",
"illuminate/console": "10.*",
"illuminate/database": "10.*",
"illuminate/filesystem": "10.*",
"illuminate/support": "10.*"
},
"require-dev": {
"mockery/mockery": "^1.5",
"openspout/openspout": "^4.12",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"suggest": {
"openspout/openspout": "Required to use csv renderer or xlsx renderer. (^4.12)"
},
"autoload": {
"psr-4": {
"Snowcookie\\GenerateSchema\\": "src/GenerateSchema/"
},
"classmap": [
"tests/migrations"
]
},
"autoload-dev": {
"psr-4": {
"Snowcookie\\GenerateSchema\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}