firefly-iii/composer.json
2015-02-06 07:23:26 +01:00

70 lines
2.0 KiB
JSON

{
"name": "grumpydictator/firefly-iii",
"description": "A web-application to manage your finances. This version will replace grumpydictator/firefly when it's finished.",
"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"
}
],
"support": {
"email": "thegrumpydictator@gmail.com",
"issues": "https://github.com/JC5/firefly-iii/issues?state=open",
"source": "https://github.com/JC5/firefly-iii"
},
"require": {
"laravel/framework": "5.0.*",
"davejamesmiller/laravel-breadcrumbs": "@stable",
"grumpydictator/gchart": "dev-master",
"michelf/php-markdown": "@stable",
"watson/validating": "dev-master",
"doctrine/dbal": "~2.5",
"illuminate/html": "~5.0",
"barryvdh/laravel-ide-helper": "~2.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "@stable",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"FireflyIII\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}