firefly-iii/composer.json
2016-11-05 18:51:26 +01:00

90 lines
2.1 KiB
JSON
Executable File

{
"name": "grumpydictator/firefly-iii",
"description": "Firefly III: a personal finances manager.",
"keywords": [
"finance",
"finances",
"manager",
"euro",
"laravel",
"money",
"financials",
"budgets",
"transactions",
"transfers",
"management"
],
"license": "MIT",
"homepage": "https://github.com/JC5/firefly-iii",
"type": "project",
"authors": [
{
"name": "James Cole",
"email": "thegrumpydictator@gmail.com",
"homepage": "https://github.com/JC5",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"ext-intl": "*",
"laravel/framework": "5.3.18",
"davejamesmiller/laravel-breadcrumbs": "^3.0",
"watson/validating": "^3.0",
"doctrine/dbal": "^2.5",
"league/commonmark": "^0.15.0",
"rcrowe/twigbridge": "^0.9.3",
"league/csv": "^8.1",
"laravelcollective/html": "^5.3",
"rmccue/requests": "^1.6",
"pragmarx/google2fa": "^1.0",
"barryvdh/laravel-debugbar": "^2.2",
"barryvdh/laravel-ide-helper": "^2.2",
"bacon/bacon-qr-code": "^1.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"FireflyIII\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan firefly:github-move",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan firefly:upgrade-instructions",
"php artisan firefly:upgrade-database",
"php artisan firefly:verify",
"php artisan firefly:github-move",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}