firefly-iii/composer.json

90 lines
2.1 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": {
"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",
2016-02-23 05:04:00 -06:00
"laravelcollective/html": "^5.2",
2016-03-04 12:35:11 -06:00
"rmccue/requests": "^1.6",
2016-03-03 13:45:27 -06:00
"pragmarx/google2fa": "^0.7.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
2016-02-05 02:25:15 -06:00
"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",
2016-02-04 10:13:34 -06:00
"barryvdh/laravel-ide-helper": "~2.0",
2016-02-05 02:25:15 -06:00
"hamcrest/hamcrest-php": "^2.0@dev"
},
"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": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
2016-04-04 12:47:55 -05:00
"php artisan cache:clear",
"php artisan clear-compiled",
2016-01-17 00:49:49 -06:00
"php artisan optimize",
"php artisan firefly:upgrade-instructions"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
2016-04-04 12:47:55 -05:00
"php artisan cache:clear",
2016-01-17 00:49:49 -06:00
"php artisan optimize",
2016-04-24 11:25:52 -05:00
"php artisan firefly:upgrade-instructions",
"php artisan firefly:verify"
]
},
"config": {
"preferred-install": "dist"
}
2014-06-28 02:41:44 -05:00
}