firefly-iii/composer.json

118 lines
2.7 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",
2016-10-12 03:20:37 -05:00
"ext-intl": "*",
"ext-bcmath": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"ext-zip": "*",
2017-01-30 09:20:23 -06:00
"laravel/framework": "5.4.*",
2017-02-16 14:06:31 -06:00
"davejamesmiller/laravel-breadcrumbs": "3.*",
2016-11-18 12:54:21 -06:00
"watson/validating": "3.*",
2016-09-15 23:19:40 -05:00
"doctrine/dbal": "^2.5",
2016-11-18 12:54:21 -06:00
"league/commonmark": "0.15.*",
"twig/twig": "1.30.0",
2016-11-18 12:54:21 -06:00
"rcrowe/twigbridge": "0.9.*",
"league/csv": "8.*",
2017-01-30 09:20:23 -06:00
"laravelcollective/html": "^5.4",
2016-11-18 12:54:21 -06:00
"rmccue/requests": "1.*",
"pragmarx/google2fa": "1.*",
"bacon/bacon-qr-code": "1.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
2016-09-15 23:19:40 -05:00
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0",
"symfony/css-selector": "3.1.*",
2016-11-18 12:54:21 -06:00
"symfony/dom-crawler": "3.1.*",
"barryvdh/laravel-debugbar": "2.*",
2017-03-19 11:54:21 -05:00
"barryvdh/laravel-ide-helper": "2.*",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"classmap": [
"database"
],
"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/"
}
},
"scripts": {
"post-root-package-install": [
2016-09-15 23:19:40 -05:00
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
2017-02-22 10:17:22 -06:00
"php artisan key:generate --force"
],
"post-install-cmd": [
2016-09-15 23:19:40 -05:00
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize",
"php artisan firefly:instructions install"
],
"post-update-cmd": [
2016-09-15 23:19:40 -05:00
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"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
],
"compile": [
2017-04-26 14:32:43 -05:00
"php artisan migrate:refresh --seed --force"
]
},
"config": {
"preferred-install": "dist"
2017-02-16 14:06:31 -06:00
}
2014-06-28 02:41:44 -05:00
}