-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
61 lines (61 loc) · 1.53 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
{
"name": "recca0120/laravel-erd",
"description": "Laravel ERD automatically generates Entity-Relationship Diagrams from your Laravel models and displays them using Vuerd.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "recca0120",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Recca0120\\LaravelErd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recca0120\\LaravelErd\\Tests\\": "tests/"
}
},
"require": {
"ext-sqlite3": "*",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
"nikic/php-parser": "^5.1.0",
"php-http/client-common": "^2.7"
},
"require-dev": {
"awobaz/compoships": "^2.3",
"doctrine/dbal": "^3.5",
"guzzlehttp/guzzle": "^7.5",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.25|^7.13|^8.0|^9.0",
"php-http/mock-client": "^1.6",
"phpunit/phpunit": "^9.5|^10.0|^11.0",
"spatie/laravel-permission": "^5.7|^6.0",
"spatie/phpunit-snapshot-assertions": "^4.2|^5.1.6"
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"Recca0120\\LaravelErd\\LaravelErdServiceProvider"
]
}
}
}