-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
31 lines (31 loc) · 920 Bytes
/
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
{
"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": "tech@icehouseventures.co.nz"
}
],
"require": {
"php": ">=5.6.4",
"laravel/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
},
"autoload": {
"psr-4": {
"IcehouseVentures\\LaravelMermaid\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"IcehouseVentures\\LaravelMermaid\\ServiceProvider"
],
"aliases": {
"Chartjs": "IcehouseVentures\\LaravelMermaid\\Facades\\Mermaid"
}
}
}
}