Files
investbrain/composer.json
T

106 lines
3.2 KiB
JSON
Raw Normal View History

2024-08-01 13:53:10 -05:00
{
2024-08-24 22:56:23 -05:00
"name": "investbrainapp/investbrain",
2024-08-01 13:53:10 -05:00
"type": "project",
2024-08-26 08:57:20 -05:00
"description": "A smart open-source tool that consolidates and tracks portfolios from your different brokerages",
2024-08-10 13:29:48 -05:00
"keywords": ["stocks", "dividends", "investments", "tracking"],
"license": "CC-BY-NC 4.0",
2024-08-01 13:53:10 -05:00
"require": {
2025-01-25 22:55:45 -06:00
"php": "^8.3",
2025-01-25 18:22:12 -06:00
"ext-gd": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"finnhub/client": "master@dev",
2025-01-27 22:44:03 -06:00
"hackeresq/filter-models": "dev-main",
2025-04-09 19:25:15 -05:00
"investbrainapp/frankfurter-client": "dev-main",
2024-12-26 12:34:29 -06:00
"laravel/framework": "^11.35",
2024-08-01 13:53:10 -05:00
"laravel/jetstream": "^5.1",
"laravel/sanctum": "^4.0",
2024-10-19 23:11:04 -05:00
"laravel/socialite": "^5.16",
2024-08-01 13:53:10 -05:00
"laravel/tinker": "^2.9",
2024-10-25 21:18:37 -05:00
"league/flysystem-aws-s3-v3": "^3.0",
2024-08-01 13:53:10 -05:00
"livewire/livewire": "^3.5",
"livewire/volt": "^1.6",
2024-08-07 18:29:23 -05:00
"maatwebsite/excel": "^3.1",
2024-12-06 16:01:53 -06:00
"openai-php/client": "^0.10.3",
"predis/predis": "^2.2",
2024-08-22 22:45:17 -05:00
"robsontenorio/mary": "^1.35",
2025-07-14 21:20:08 -05:00
"scheb/yahoo-finance-api": "^5.0",
2024-08-31 23:06:19 -05:00
"staudenmeir/eloquent-has-many-deep": "^1.20",
2025-08-26 19:13:00 -05:00
"symfony/cache": "^7.3",
2025-01-27 22:44:03 -06:00
"tschucki/alphavantage-laravel": "^0.0"
2024-08-01 13:53:10 -05:00
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1"
},
2024-09-12 21:05:01 -05:00
"repositories": [
2025-01-24 19:29:15 -06:00
{
"type": "vcs",
2025-01-25 16:57:35 -06:00
"no-api": true,
2025-01-24 19:29:15 -06:00
"url": "https://github.com/hackeresq/filter-models"
},
2025-04-10 21:33:18 -05:00
{
"type": "vcs",
"no-api": true,
"url": "https://github.com/investbrainapp/frankfurter-client"
},
2024-09-12 21:05:01 -05:00
{
"type": "vcs",
2025-01-25 16:57:35 -06:00
"no-api": true,
"url": "https://github.com/investbrainapp/finnhub-php"
2024-09-12 21:05:01 -05:00
}
],
2024-08-01 13:53:10 -05:00
"autoload": {
2024-08-10 13:29:48 -05:00
"files": [
"app/Support/Helpers.php"
],
2024-08-01 13:53:10 -05:00
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
2024-08-01 13:53:10 -05:00
"prefer-stable": true
}