Last active
January 2, 2016 16:39
-
-
Save sergigp/8331595 to your computer and use it in GitHub Desktop.
Revisions
-
sergigp renamed this gist
Jan 9, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sergigp revised this gist
Jan 9, 2014 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,6 +16,8 @@ hhvm composer.phar install # 3 minutes 18 seconds php composer.phar update # 2 minutes 35 seconds hhvm composer.phar update # 0 minutes 56 seconds My composer.json: default laravel 4.1 with some third party packages: @@ -60,6 +62,3 @@ My composer.json: default laravel 4.1 with some third party packages: }, "minimum-stability": "dev" } -
sergigp revised this gist
Jan 9, 2014 . 1 changed file with 46 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,4 +16,50 @@ hhvm composer.phar install # 3 minutes 18 seconds php composer.phar update # 2 minutes 35 seconds My composer.json: default laravel 4.1 with some third party packages: { "name": "laravel/laravel", "description": "The Laravel Framework.", "keywords": ["framework", "laravel"], "license": "MIT", "require": { "laravel/framework": "4.1.*", "way/generators": "dev-master", "barryvdh/laravel-ide-helper": "1.*", "symfony/yaml": "2.4.*", "symfony/dom-crawler": "2.4.*", "phpunit/phpunit": "3.7.*" }, "autoload": { "classmap": [ "app/commands", "app/controllers", "app/models", "app/database/migrations", "app/database/seeds", "app/tests/TestCase.php" ] }, "scripts": { "post-install-cmd": [ "php artisan optimize" ], "post-update-cmd": [ "php artisan ide-helper:generate", "php artisan clear-compiled", "php artisan optimize" ], "post-create-project-cmd": [ "php artisan key:generate" ] }, "config": { "preferred-install": "dist" }, "minimum-stability": "dev" } hhvm composer.phar update # 0 minutes 56 seconds -
sergigp created this gist
Jan 9, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # clear composer cache rm ~/.composer/cache/* rm vendor/* rm composer.lock php composer.phar install # 4 minutes 36 seconds # clear composer cache rm ~/.composer/cache/* rm vendor/* rm composer.lock hhvm composer.phar install # 3 minutes 18 seconds php composer.phar update # 2 minutes 35 seconds hhvm composer.phar update # 0 minutes 56 seconds