-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 1.13 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
{
"name": "icehouse-ventures/laravel-mermaid",
"description": "Simple package to generate diagrams in Laravel using the Mermaid.js library",
"keywords": ["laravel", "mermaid", "diagram", "flowchart", "icehouseventures"],
"license": "MIT",
"authors": [
{
"name": "Icehouse Ventures",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/view": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/filesystem": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/collections": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"IcehouseVentures\\LaravelMermaid\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"IcehouseVentures\\LaravelMermaid\\ServiceProvider"
],
"aliases": {
"Chartjs": "IcehouseVentures\\LaravelMermaid\\Facades\\Mermaid"
}
}
}
}