mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Updated various files after upgrade to laravel 5.2
This commit is contained in:
131
composer.json
Normal file → Executable file
131
composer.json
Normal file → Executable file
@@ -1,68 +1,71 @@
|
||||
{
|
||||
"name": "grumpydictator/firefly-iii",
|
||||
"description": "Firefly III: a personal finances manager.",
|
||||
"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"
|
||||
"name": "grumpydictator/firefly-iii",
|
||||
"description": "Firefly III: a personal finances manager.",
|
||||
"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"
|
||||
}],
|
||||
|
||||
},
|
||||
"require": {
|
||||
"laravel/framework": "5.1.*",
|
||||
"php": ">=5.6.4",
|
||||
"davejamesmiller/laravel-breadcrumbs": "~3.0",
|
||||
"watson/validating": "~1.0",
|
||||
"doctrine/dbal": "~2.5",
|
||||
"illuminate/html": "~5.0",
|
||||
"league/commonmark": "~0.7",
|
||||
"rcrowe/twigbridge": "~0.9",
|
||||
"zizaco/entrust": "dev-laravel-5",
|
||||
"league/csv": "^7.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "@stable",
|
||||
"barryvdh/laravel-ide-helper": "~2.0"
|
||||
},
|
||||
"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"
|
||||
"require": {
|
||||
"php": ">=5.6.11",
|
||||
"laravel/framework": "5.2.*",
|
||||
"davejamesmiller/laravel-breadcrumbs": "~3.0",
|
||||
"watson/validating": "~2.0",
|
||||
"doctrine/dbal": "~2.5",
|
||||
"league/commonmark": "~0.7",
|
||||
"rcrowe/twigbridge": "~0.9",
|
||||
"zizaco/entrust": "dev-laravel-5",
|
||||
"league/csv": "^7.1",
|
||||
"laravelcollective/html": "^5.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"fzaninotto/faker": "~1.4",
|
||||
"mockery/mockery": "0.9.*",
|
||||
"phpunit/phpunit": "~4.0",
|
||||
"symfony/css-selector": "2.8.*|3.0.*",
|
||||
"symfony/dom-crawler": "2.8.*|3.0.*",
|
||||
"barryvdh/laravel-debugbar": "@stable",
|
||||
"barryvdh/laravel-ide-helper": "~2.0"
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"database"
|
||||
],
|
||||
"psr-4": {
|
||||
"FireflyIII\\": "app/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"classmap": [
|
||||
"tests/TestCase.php"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"post-root-package-install": [
|
||||
"php -r \"copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"php artisan key:generate"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"php artisan clear-compiled",
|
||||
"php artisan optimize"
|
||||
],
|
||||
"pre-update-cmd": [
|
||||
"php artisan clear-compiled"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"php artisan optimize"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"preferred-install": "dist"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user