forked from BIGGANI/Firefly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (71 loc) · 2.11 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "grumpydictator/firefly",
"description": "A web-application to manage your finances.",
"license": "MIT",
"keywords": ["finance", "finances", "manager", "euro", "laravel", "money", "financials", "budgets", "transactions", "transfers", "management"],
"homepage": "https://github.com/JC5/firefly",
"php": ">=5.4.0",
"type": "project",
"authors": [
{
"name": "James Cole",
"email": "[email protected]",
"homepage": "https://github.com/JC5",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/JC5/firefly/issues?state=open",
"source": "https://github.com/JC5/firefly"
},
"require": {
"laravel/framework": "4.1.*",
"davejamesmiller/laravel-breadcrumbs": "2.*",
"grumpydictator/gchart": "dev-master"
},
"require-dev": {
"barryvdh/laravel-debugbar": "dev-master",
"barryvdh/laravel-ide-helper": "1.*",
"satooshi/php-coveralls": "dev-master",
"phpunit/phpunit-skeleton-generator": "2.0.*@dev",
"mockery/mockery": "dev-master"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/events",
"app/helpers",
"app/extensions",
"app/queue",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
],
"psr-0": {
"Firefly": "app/lib/"
}
},
"scripts": {
"post-install-cmd": [
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate",
"php artisan firefly:create-project"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable"
}