composer update

This commit is contained in:
denisdulici 2017-12-10 01:28:49 +03:00
parent 1bab6b9707
commit 3c49b8ce1b
2 changed files with 7 additions and 6 deletions

View File

@ -25,7 +25,7 @@ Akaunting uses [Laravel](http://laravel.com), the best existing PHP framework, a
* Install [Composer](https://getcomposer.org/download)
* Download the [repository](https://github.com/akaunting/akaunting/archive/master.zip) and unzip into your server
* Open and point your command line to the directory you unzipped Akaunting
* Run the following commands separately: `composer install` , `composer dump-autoload`
* Run the following command: `composer install`
* Finally, launch the [installer](https://akaunting.com/docs/installation)
## Contributing

View File

@ -53,27 +53,28 @@
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload",
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan clear-compiled",
"php artisan optimize"
"php artisan optimize",
"composer dump-autoload"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan clear-compiled",
"php artisan optimize"
"php artisan optimize",
"composer dump-autoload"
],
"post-create-project-cmd": [
"composer dump-autoload",
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan clear-compiled",
"php artisan optimize"
"php artisan optimize",
"composer dump-autoload"
]
},
"config": {