firefly-iii/composer.json

84 lines
1.9 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",
"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"
2016-04-24 11:25:52 -05:00
}
],
"require": {
2016-09-15 23:19:40 -05:00
"php": ">=7.0.0",
"laravel/framework": "5.3.*",
"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",
2016-03-04 12:35:11 -06:00
"rmccue/requests": "^1.6",
2016-09-15 23:19:40 -05:00
"pragmarx/google2fa": "^1.0",
"barryvdh/laravel-debugbar": "^2.2",
"barryvdh/laravel-ide-helper": "^2.2"
},
"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.*",
"symfony/dom-crawler": "3.1.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"FireflyIII\\": "app/"
2014-07-27 12:49:14 -05:00
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"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": [
"php artisan key:generate"
],
"post-install-cmd": [
2016-09-15 23:19:40 -05:00
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
2016-09-15 23:19:40 -05:00
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
2016-04-24 11:25:52 -05:00
"php artisan firefly:upgrade-instructions",
2016-09-15 23:19:40 -05:00
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
2014-06-28 02:41:44 -05:00
}