generated from MilesChou/composer-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mileschou/schemarkdown",
"description": "The schema generate helper",
"type": "library",
"license": "MIT",
"keywords": [
"laravel", "database"
],
"authors": [
{
"name": "MilesChou",
"email": "[email protected]",
"homepage": "https://mileschou.github.io/",
"role": "Maintainer"
}
],
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.6",
"illuminate/console": "^8 | ^9 | ^10 | ^11",
"illuminate/database": "^8 | ^9 | ^10 | ^11",
"illuminate/events": "^8 | ^9 | ^10 | ^11",
"illuminate/support": "^8 | ^9 | ^10 | ^11",
"illuminate/view": "^8 | ^9 | ^10 | ^11",
"mikey179/vfsstream": "^1.6.7",
"mileschou/codegener": "^2.0"
},
"require-dev": {
"ext-pdo": "*",
"illuminate/container": "^8 | ^9 | ^10 | ^11",
"laravel-zero/framework": "^8.10 | ^9 | ^10 | ^11",
"pestphp/pest": "^1.22",
"phpunit/phpunit": "^9.6",
"psy/psysh": "^0.11.15",
"squizlabs/php_codesniffer": "^3.10.2",
"symfony/var-dumper": "^6"
},
"autoload": {
"psr-4": {
"MilesChou\\Schemarkdown\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/",
"Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"MilesChou\\Schemarkdown\\SchemarkdownServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}