forked from kokspflanze/alpha-vantage-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 952 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": "kokspflanze/alpha-vantage-api",
"type": "library",
"description": "Alpha Vantage API client",
"license": "MIT",
"keywords": [
"api",
"alpha-vantage",
"alphavantage"
],
"homepage": "https://github.com/kokspflanze/alpha-vantage-api",
"autoload": {
"psr-4": {
"AlphaVantage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AlphaVantageTest\\": "tests/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"guzzlehttp/guzzle": "^6.5 || ^7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5.8",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"psr/container": "If you want use factories for PSR-11 Containers"
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml --colors=always",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}