-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
38 lines (38 loc) · 961 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
32
33
34
35
36
37
38
{
"name": "radicalloop/eodhistoricaldata",
"description": "Wrapper for eodhistoricaldata.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jignesh Solanki",
"email": "jignesh.radicalloop@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"RadicalLoop\\Eod\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mikey179/vfsstream": "^1.6",
"vlucas/phpdotenv": "^5.6",
"ext-json": "*"
},
"extra": {
"laravel": {
"providers": [
"RadicalLoop\\Eod\\EodServiceProvider"
],
"aliases": {
"Eod": "RadicalLoop\\Eod\\Facades\\Eod"
}
}
}
}