firefly-iii/composer.json

129 lines
2.8 KiB
JSON
Raw Normal View History

2014-06-28 02:41:44 -05:00
{
2018-01-19 01:35:25 -06:00
"name": "grumpydictator/firefly-iii",
"description": "Firefly III: a personal finances manager.",
"keywords": [
"finance",
"finances",
"manager",
"management",
"euro",
"dollar",
"laravel",
"money",
"currency",
"financials",
"financial",
"budgets",
"administration",
"tool",
"tooling",
"help",
"helper",
"assistant",
"planning",
"organizing",
"bills",
"personal finance",
"budgets",
"budgeting",
"budgeting tool",
"budgeting application",
"transactions",
"self hosted",
"self-hosted",
"transfers",
"management"
],
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/firefly-iii/firefly-iii",
"type": "project",
"authors": [{
"name": "James Cole",
"email": "thegrumpydictator@gmail.com",
"homepage": "https://github.com/firefly-iii",
"role": "Developer"
}],
"require": {
"php": ">=7.1.0",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-intl": "*",
2018-03-29 12:01:59 -05:00
"ext-xml": "*",
2018-04-01 23:56:19 -05:00
"ext-zip": "*",
2018-01-19 01:35:25 -06:00
"bacon/bacon-qr-code": "1.*",
2018-05-24 23:26:10 -05:00
"bunq/sdk_php": "dev-master#8c1faefc111d9b970168a1837ca165d854954941",
2018-03-07 13:37:00 -06:00
"davejamesmiller/laravel-breadcrumbs": "5.*",
2018-01-19 01:35:25 -06:00
"doctrine/dbal": "2.*",
2018-03-07 13:37:00 -06:00
"fideloper/proxy": "4.*",
"laravel/framework": "5.6.*",
"laravel/passport": "^5.0",
"laravelcollective/html": "5.6.*",
2018-01-19 01:35:25 -06:00
"league/commonmark": "0.*",
"league/csv": "9.*",
2018-02-04 08:57:48 -06:00
"league/fractal": "^0.17.0",
2018-04-01 23:56:19 -05:00
"pragmarx/google2fa": "3.*",
"pragmarx/google2fa-laravel": "0.*",
2018-01-19 01:35:25 -06:00
"rcrowe/twigbridge": "0.9.*",
"rmccue/requests": "1.*",
2018-04-01 23:56:19 -05:00
"twig/twig": "1.*"
2018-01-19 01:35:25 -06:00
},
"require-dev": {
"barryvdh/laravel-ide-helper": "2.*",
"filp/whoops": "2.*",
"fzaninotto/faker": "1.*",
2018-04-27 04:29:19 -05:00
"johnkary/phpunit-speedtrap": "^3.0",
2018-01-19 01:35:25 -06:00
"mockery/mockery": "^1.0",
"php-coveralls/php-coveralls": "^2.0",
2018-04-27 04:29:19 -05:00
"phpunit/phpunit": "~7.0",
"roave/security-advisories": "dev-master"
2018-01-19 01:35:25 -06:00
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"FireflyIII\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"pre-install-cmd": [
"@php -r \"if (!(getenv('DYNO'))===false){file_exists('.env') || copy('.env.heroku', '.env');}\""
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"post-update-cmd": [
"php artisan firefly:upgrade-database",
"php artisan firefly:verify",
"php artisan firefly:instructions update",
2018-03-04 06:23:44 -06:00
"php artisan passport:install"
2018-01-19 01:35:25 -06:00
],
"post-install-cmd": [
"php artisan firefly:instructions install"
2018-01-19 01:35:25 -06:00
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
2014-06-28 02:41:44 -05:00
}