Update composer.json

This commit is contained in:
James Cole
2018-01-19 08:35:25 +01:00
committed by GitHub
parent c137255155
commit a9c117703b

View File

@@ -1,129 +1,126 @@
{ {
"name": "grumpydictator/firefly-iii", "name": "grumpydictator/firefly-iii",
"description": "Firefly III: a personal finances manager.", "description": "Firefly III: a personal finances manager.",
"keywords": [ "keywords": [
"finance", "finance",
"finances", "finances",
"manager", "manager",
"management", "management",
"euro", "euro",
"dollar", "dollar",
"laravel", "laravel",
"money", "money",
"currency", "currency",
"financials", "financials",
"financial", "financial",
"budgets", "budgets",
"administration", "administration",
"tool", "tool",
"tooling", "tooling",
"help", "help",
"helper", "helper",
"assistant", "assistant",
"planning", "planning",
"organizing", "organizing",
"bills", "bills",
"personal finance", "personal finance",
"budgets", "budgets",
"budgeting", "budgeting",
"budgeting tool", "budgeting tool",
"budgeting application", "budgeting application",
"transactions", "transactions",
"self hosted", "self hosted",
"self-hosted", "self-hosted",
"transfers", "transfers",
"management" "management"
], ],
"license": "GPL-3.0", "license": "GPL-3.0-or-later",
"homepage": "https://github.com/firefly-iii/firefly-iii", "homepage": "https://github.com/firefly-iii/firefly-iii",
"type": "project", "type": "project",
"authors": [ "authors": [{
{ "name": "James Cole",
"name": "James Cole", "email": "thegrumpydictator@gmail.com",
"email": "thegrumpydictator@gmail.com", "homepage": "https://github.com/firefly-iii",
"homepage": "https://github.com/firefly-iii", "role": "Developer"
"role": "Developer" }],
} "require": {
], "php": ">=7.1.0",
"require": { "ext-bcmath": "*",
"php": ">=7.1.0", "ext-curl": "*",
"ext-bcmath": "*", "ext-gd": "*",
"ext-curl": "*", "ext-intl": "*",
"ext-gd": "*", "ext-mbstring": "*",
"ext-intl": "*", "ext-zip": "*",
"ext-mbstring": "*", "bacon/bacon-qr-code": "1.*",
"ext-zip": "*", "davejamesmiller/laravel-breadcrumbs": "4.*",
"bacon/bacon-qr-code": "1.*", "doctrine/dbal": "2.*",
"davejamesmiller/laravel-breadcrumbs": "4.*", "fideloper/proxy": "3.*",
"doctrine/dbal": "2.*", "laravel/framework": "5.5.*",
"fideloper/proxy": "3.*", "laravelcollective/html": "5.5.*",
"laravel/framework": "5.5.*", "league/commonmark": "0.*",
"laravelcollective/html": "5.5.*", "league/csv": "9.*",
"league/commonmark": "0.*", "pragmarx/google2fa": "2.*",
"league/csv": "9.*", "pragmarx/google2fa-laravel": "^0.1.4",
"pragmarx/google2fa": "2.*", "rcrowe/twigbridge": "0.9.*",
"pragmarx/google2fa-laravel": "^0.1.4", "rmccue/requests": "1.*",
"rcrowe/twigbridge": "0.9.*", "twig/twig": "1.*",
"rmccue/requests": "1.*", "watson/validating": "3.*"
"twig/twig": "1.*", },
"watson/validating": "3.*" "require-dev": {
}, "barryvdh/laravel-debugbar": "3.*",
"require-dev": { "barryvdh/laravel-ide-helper": "2.*",
"barryvdh/laravel-debugbar": "3.*", "filp/whoops": "2.*",
"barryvdh/laravel-ide-helper": "2.*", "fzaninotto/faker": "1.*",
"filp/whoops": "2.*", "mockery/mockery": "^1.0",
"fzaninotto/faker": "1.*", "php-coveralls/php-coveralls": "^2.0",
"mockery/mockery": "^1.0", "phpunit/phpunit": "^6.0"
"php-coveralls/php-coveralls": "^2.0", },
"phpunit/phpunit": "^6.0" "autoload": {
}, "classmap": [
"autoload": { "database/seeds",
"classmap": [ "database/factories"
"database/seeds", ],
"database/factories" "psr-4": {
], "FireflyIII\\": "app/"
"psr-4": { }
"FireflyIII\\": "app/" },
} "autoload-dev": {
}, "psr-4": {
"autoload-dev": { "Tests\\": "tests/"
"psr-4": { }
"Tests\\": "tests/" },
} "extra": {
}, "laravel": {
"extra": { "dont-discover": []
"laravel": { }
"dont-discover": [ },
] "scripts": {
} "pre-install-cmd": [
}, "@php -r \"if (!(getenv('DYNO'))===false){file_exists('.env') || copy('.env.heroku', '.env');}\""
"scripts": { ],
"pre-install-cmd": [ "post-root-package-install": [
"@php -r \"if (!(getenv('DYNO'))===false){file_exists('.env') || copy('.env.heroku', '.env');}\"" "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
], ],
"post-root-package-install": [ "post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" "@php artisan key:generate"
], ],
"post-create-project-cmd": [ "post-autoload-dump": [
"@php artisan key:generate" "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
], ],
"post-autoload-dump": [ "post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump" "php artisan firefly:upgrade-database",
], "php artisan firefly:verify",
"post-update-cmd": [ "php artisan firefly:instructions update",
"php artisan firefly:upgrade-database", "php artisan optimize"
"php artisan firefly:verify", ],
"php artisan firefly:instructions update", "post-install-cmd": [
"php artisan optimize" "php artisan optimize",
], "php artisan firefly:instructions install"
"post-install-cmd": [ ]
"php artisan optimize", },
"php artisan firefly:instructions install" "config": {
] "preferred-install": "dist",
}, "sort-packages": true,
"config": { "optimize-autoloader": true
"preferred-install": "dist", }
"sort-packages": true,
"optimize-autoloader": true
}
} }