firefly-iii/composer.json

81 lines
2.5 KiB
JSON
Raw Normal View History

2014-06-28 02:41:44 -05:00
{
2014-07-15 03:53:44 -05:00
"name": "grumpydictator/firefly-iii",
"description": "A web-application to manage your finances. This version will replace grumpydictator/firefly when it's finished.",
2014-06-28 02:45:56 -05:00
"license": "MIT",
"keywords": ["finance", "finances", "manager", "euro", "laravel", "money", "financials", "budgets", "transactions", "transfers", "management"],
2014-07-15 03:53:44 -05:00
"homepage": "https://github.com/JC5/firefly-iii",
2014-06-28 02:45:56 -05:00
"type": "project",
"authors": [
{
2014-10-23 09:42:11 -05:00
"name": "James Cole",
2014-06-28 02:45:56 -05:00
"email": "thegrumpydictator@gmail.com",
"homepage": "https://github.com/JC5",
"role": "Developer"
}
],
"support": {
"email": "thegrumpydictator@gmail.com",
2014-07-15 03:53:44 -05:00
"issues": "https://github.com/JC5/firefly-iii/issues?state=open",
"source": "https://github.com/JC5/firefly-iii"
2014-06-28 02:45:56 -05:00
},
"require": {
"laravel/framework": "4.2.*",
2014-10-11 01:31:17 -05:00
"davejamesmiller/laravel-breadcrumbs": "2.*",
2014-12-13 02:36:30 -06:00
"grumpydictator/gchart": "1.*",
2014-12-06 05:12:55 -06:00
"michelf/php-markdown": "1.*",
"watson/validating": "0.10.*",
"doctrine/dbal": "~2.3"
2014-06-28 02:45:56 -05:00
},
"require-dev": {
2014-08-31 00:32:59 -05:00
"barryvdh/laravel-debugbar": "@stable",
2014-09-04 02:02:54 -05:00
"barryvdh/laravel-ide-helper": "@stable",
2015-01-30 15:09:47 -06:00
"satooshi/php-coveralls": "*",
2014-11-25 14:04:00 -06:00
"mockery/mockery": "@stable",
"league/factory-muffin": "~2.1",
2014-12-06 14:48:23 -06:00
"codeception/codeception": "*",
"codeception/c3": "2.*",
"sebastian/phpcpd": "*",
2014-12-15 13:56:18 -06:00
"sebastian/phpdcd": "*",
"codeception/phpbuiltinserver": "*",
"codeception/specify": "*",
2015-01-01 15:51:38 -06:00
"codeception/verify": "*",
2015-01-30 15:09:47 -06:00
"fzaninotto/faker": "1.*",
"codeclimate/php-test-reporter": "dev-master"
2015-01-01 15:51:38 -06:00
2014-11-26 14:31:12 -06:00
2014-06-28 02:45:56 -05:00
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
],
"psr-0": {
"Firefly": "app/lib/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
2014-12-06 14:48:23 -06:00
"php artisan optimize",
"Codeception\\c3\\Installer::copyC3ToRoot"
2014-06-28 02:45:56 -05:00
],
"post-update-cmd": [
"php artisan clear-compiled",
2014-12-06 14:48:23 -06:00
"php artisan optimize",
"Codeception\\c3\\Installer::copyC3ToRoot"
2014-06-28 02:45:56 -05:00
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
2014-07-27 12:49:14 -05:00
}
2014-06-28 02:41:44 -05:00
}