-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
40 lines (40 loc) · 1.03 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
35
36
37
38
39
40
{
"name": "scheb/yahoo-finance-api",
"type": "library",
"description": "PHP library for accessing Yahoo Finance data",
"keywords": ["yahoo", "finance", "stock", "api"],
"homepage": "https://github.com/scheb/yahoo-finance-api",
"license": "MIT",
"authors": [
{
"name": "Christian Scheb",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.9",
"phpunit/phpunit": "^7.5 || ^8 || ^9",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11|^4.0"
},
"autoload": {
"psr-4": {
"Scheb\\YahooFinanceApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scheb\\YahooFinanceApi\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}