-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 813 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 813 Bytes
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
{
"name": "square1/chart-generator",
"description": "Package to manage the Square1 microservice chart-generator",
"type": "library",
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^7.2",
"intervention/image": "^2.0",
"laravel/framework": "^7|^8|^9|^10|^11"
},
"authors": [
{
"name": "Jose Vicente Orts Romero",
"email": "vince@square1.io"
}
],
"autoload": {
"psr-4": {
"Square1\\ChartGenerator\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Square1\\ChartGenerator\\ServiceProvider"
],
"aliases": {
"ChartGenerator": "Square1\\ChartGenerator\\Facade"
}
}
}
}