firefly-iii/composer.json

132 lines
3.0 KiB
JSON
Raw Normal View History

2014-06-28 02:41:44 -05:00
{
"name": "grumpydictator/firefly-iii",
"description": "Firefly III: a personal finances manager.",
2016-04-24 11:25:52 -05:00
"keywords": [
"finance",
"finances",
"manager",
"management",
2016-04-24 11:25:52 -05:00
"euro",
"dollar",
2016-04-24 11:25:52 -05:00
"laravel",
"money",
"currency",
2016-04-24 11:25:52 -05:00
"financials",
"financial",
2016-04-24 11:25:52 -05:00
"budgets",
"administration",
"tool",
"tooling",
"help",
"helper",
"assistant",
"planning",
"organizing",
"bills",
"personal finance",
"budgets",
"budgeting",
"budgeting tool",
"budgeting application",
2016-04-24 11:25:52 -05:00
"transactions",
"self hosted",
"self-hosted",
2016-04-24 11:25:52 -05:00
"transfers",
"management"
],
"license": "Creative Commons Attribution-ShareAlike 4.0 International License",
"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"
2016-04-24 11:25:52 -05:00
}
],
"require": {
2017-07-23 13:00:26 -05:00
"php": ">=7.1.0",
"ext-bcmath": "*",
"ext-curl": "*",
2017-10-06 08:52:06 -05:00
"ext-intl": "*",
2017-10-21 22:47:07 -05:00
"ext-gd": "*",
2017-10-06 08:52:06 -05:00
"ext-mbstring": "*",
"ext-zip": "*",
2017-10-06 08:52:06 -05:00
"bacon/bacon-qr-code": "1.*",
2017-02-16 14:06:31 -06:00
"davejamesmiller/laravel-breadcrumbs": "3.*",
2016-09-15 23:19:40 -05:00
"doctrine/dbal": "^2.5",
2017-10-06 08:52:06 -05:00
"fideloper/proxy": "~3.3",
"laravel/framework": "5.5.*",
"laravelcollective/html": "^5.4",
2016-11-18 12:54:21 -06:00
"league/commonmark": "0.15.*",
2017-10-14 01:08:14 -05:00
"league/csv": "8.*",
2016-11-18 12:54:21 -06:00
"pragmarx/google2fa": "1.*",
2017-10-06 08:52:06 -05:00
"rcrowe/twigbridge": "0.9.*",
"rmccue/requests": "1.*",
"twig/twig": "1.30.0",
"watson/validating": "3.*"
},
"require-dev": {
2017-09-09 15:32:11 -05:00
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
2016-09-15 23:19:40 -05:00
"mockery/mockery": "0.9.*",
2017-09-09 15:32:11 -05:00
"phpunit/phpunit": "~6.0",
2016-11-18 12:54:21 -06:00
"barryvdh/laravel-debugbar": "2.*",
2017-10-14 01:06:34 -05:00
"barryvdh/laravel-ide-helper": "2.*",
"php-coveralls/php-coveralls": "^1.0"
},
"autoload": {
"classmap": [
2017-09-09 15:32:11 -05:00
"database/seeds",
"database/factories"
],
"psr-4": {
"FireflyIII\\": "app/"
2014-07-27 12:49:14 -05:00
}
},
"autoload-dev": {
2017-02-05 08:41:41 -06:00
"psr-4": {
"Tests\\": "tests/"
}
},
2017-09-09 15:32:11 -05:00
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
2017-11-27 09:31:52 -06:00
"pre-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-root-package-install": [
2017-09-09 15:32:11 -05:00
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
2017-09-09 15:32:11 -05:00
"@php artisan key:generate"
],
2017-09-09 15:32:11 -05:00
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
],
"post-update-cmd": [
"php artisan firefly:upgrade-database",
2016-09-24 01:59:14 -05:00
"php artisan firefly:verify",
"php artisan firefly:instructions update",
2016-09-15 23:19:40 -05:00
"php artisan optimize"
2017-04-26 14:31:46 -05:00
],
2017-09-09 15:32:11 -05:00
"post-install-cmd": [
"php artisan optimize",
"php artisan firefly:instructions install"
2017-11-27 09:31:52 -06:00
],
"compile": [
"@php artisan key:generate --force"
]
},
"config": {
2017-09-09 15:32:11 -05:00
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
2017-02-16 14:06:31 -06:00
}
2014-06-28 02:41:44 -05:00
}