firefly-iii/composer.json

72 lines
2.1 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
"keywords": ["finance", "finances", "manager", "euro", "laravel", "money", "financials", "budgets", "transactions", "transfers", "management"],
2015-02-05 21:27:37 -06:00
"license": "MIT",
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": {
2015-02-05 21:27:37 -06:00
"laravel/framework": "5.0.*",
2015-02-22 02:46:21 -06:00
"davejamesmiller/laravel-breadcrumbs": "~3.0",
2015-02-05 21:39:52 -06:00
"grumpydictator/gchart": "dev-master",
2015-02-05 21:27:37 -06:00
"watson/validating": "dev-master",
2015-02-06 00:23:26 -06:00
"doctrine/dbal": "~2.5",
"illuminate/html": "~5.0",
2015-02-25 09:10:02 -06:00
"league/commonmark": "0.7.*"
2014-06-28 02:45:56 -05:00
},
"require-dev": {
2014-08-31 00:32:59 -05:00
"barryvdh/laravel-debugbar": "@stable",
2015-02-27 13:45:17 -06:00
"barryvdh/laravel-ide-helper": "~2.0",
2015-02-05 21:27:37 -06:00
"phpunit/phpunit": "~4.0",
2015-02-27 13:45:17 -06:00
"phpspec/phpspec": "~2.1"
2014-06-28 02:45:56 -05:00
},
"autoload": {
"classmap": [
2015-02-05 21:27:37 -06:00
"database"
2014-06-28 02:45:56 -05:00
],
2015-02-05 21:27:37 -06:00
"psr-4": {
2015-02-05 21:52:16 -06:00
"FireflyIII\\": "app/"
2014-06-28 02:45:56 -05:00
}
},
2015-02-05 21:27:37 -06:00
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
2014-06-28 02:45:56 -05:00
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
2015-02-07 03:38:27 -06:00
"php artisan optimize",
"Codeception\\c3\\Installer::copyC3ToRoot"
2014-06-28 02:45:56 -05:00
],
"post-update-cmd": [
"php artisan clear-compiled",
2015-02-07 03:38:27 -06:00
"php artisan optimize",
"Codeception\\c3\\Installer::copyC3ToRoot"
2014-06-28 02:45:56 -05:00
],
"post-create-project-cmd": [
2015-02-05 21:27:37 -06:00
"php -r \"copy('.env.example', '.env');\"",
2014-06-28 02:45:56 -05:00
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
2014-07-27 12:49:14 -05:00
}
2014-06-28 02:41:44 -05:00
}