-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 870 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
{
"name": "michaeldrennen/td-ameritrade-api",
"description": "A PHP library used to interact with the TD Ameritrade API.",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6|^7",
"symfony/dom-crawler": "^5|^6",
"symfony/css-selector": "^5|^6",
"chrome-php/chrome": "^0|^1",
"nesbot/carbon": "^2",
"michaeldrennen/calendar": "^1",
"michaeldrennen/business-calendar": "^0"
},
"require-dev": {
"phpunit/phpunit": "^8|^9"
},
"license": "MIT",
"authors": [
{
"name": "michaeldrennen",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"MichaelDrennen\\TDAmeritradeAPI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MichaelDrennen\\TDAmeritradeAPI\\Tests\\": "tests"
}
}
}