-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 773 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 773 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
33
34
35
36
{
"name": "exodus4d/pathfinder_esi",
"description": "ESI API library for Pathfinder",
"type": "library",
"homepage": "https://github.com/exodus4d/pathfinder_esi",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Mark Friedrich",
"email": "pathfinder@exodus4d.de"
}
],
"config": {
"optimize-autoloader": true,
"lock": false
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/exodus4d/pathfinder_esi"
}
],
"autoload": {
"psr-4": {
"Exodus4D\\ESI\\": "app/"
}
},
"require": {
"php-64bit": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "6.5.*",
"caseyamcl/guzzle_retry_middleware": "2.3.*",
"cache/void-adapter": "1.0.*"
}
}