Updated composer file.

This commit is contained in:
James Cole 2014-06-28 09:45:56 +02:00
parent f826145599
commit 885685815e

View File

@ -1,36 +1,61 @@
{ {
"name": "laravel/laravel", "name": "grumpydictator/firefly",
"description": "The Laravel Framework.", "description": "A web-application to manage your finances.",
"keywords": ["framework", "laravel"], "license": "MIT",
"license": "MIT", "keywords": ["finance", "finances", "manager", "euro", "laravel", "money", "financials", "budgets", "transactions", "transfers", "management"],
"require": { "homepage": "https://github.com/JC5/firefly-v",
"laravel/framework": "4.2.*" "php": ">=5.4.0",
}, "type": "project",
"autoload": { "authors": [
"classmap": [ {
"app/commands", "name": "James Cole",
"app/controllers", "email": "thegrumpydictator@gmail.com",
"app/models", "homepage": "https://github.com/JC5",
"app/database/migrations", "role": "Developer"
"app/database/seeds", }
"app/tests/TestCase.php" ],
] "support": {
}, "email": "thegrumpydictator@gmail.com",
"scripts": { "issues": "https://github.com/JC5/firefly-v/issues?state=open",
"post-install-cmd": [ "source": "https://github.com/JC5/firefly-v"
"php artisan clear-compiled",
"php artisan optimize" },
], "require": {
"post-update-cmd": [ "laravel/framework": "4.2.*",
"php artisan clear-compiled", "grumpydictator/gchart": "dev-master"
"php artisan optimize" },
], "require-dev": {
"post-create-project-cmd": [ "barryvdh/laravel-debugbar": "dev-master",
"php artisan key:generate" "barryvdh/laravel-ide-helper": "1.*"
] },
}, "autoload": {
"config": { "classmap": [
"preferred-install": "dist" "app/commands",
}, "app/controllers",
"minimum-stability": "stable" "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",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
} }