firefly-iii/composer.json
2016-05-20 08:57:45 +02:00

90 lines
2.1 KiB
JSON

{
"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": {
"laravel/framework": "5.2.*",
"davejamesmiller/laravel-breadcrumbs": "~3.0",
"watson/validating": "~2.0",
"doctrine/dbal": "~2.5",
"league/commonmark": "~0.7",
"rcrowe/twigbridge": "~0.9",
"league/csv": "^7.1",
"laravelcollective/html": "^5.2",
"rmccue/requests": "^1.6",
"pragmarx/google2fa": "^0.7.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "dev-master",
"phpunit/phpunit": "~4.0",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*",
"barryvdh/laravel-debugbar": "@stable",
"barryvdh/laravel-ide-helper": "~2.0",
"hamcrest/hamcrest-php": "^2.0@dev"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"FireflyIII\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"php artisan cache:clear",
"php artisan clear-compiled",
"php artisan optimize",
"php artisan firefly:upgrade-instructions"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan cache:clear",
"php artisan optimize",
"php artisan firefly:upgrade-instructions",
"php artisan firefly:verify"
]
},
"config": {
"preferred-install": "dist"
}
}