Wednesday, January 21, 2015

Laravel - Installation


https://www.vagrantup.com/

http://code.tutsplus.com/tutorials/building-web-applications-from-scratch-with-laravel--net-25517


http://laravel.com/docs/4.2/homestead

Introduction

Laravel strives to make the entire PHP development experience delightful, including your local development environment. Vagrant provides a simple, elegant way to manage and provision Virtual Machines.

Laravel Homestead is an official, pre-packaged Vagrant "box" that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. No more worrying about messing up your operating system! Vagrant boxes are completely disposable. If something goes wrong, you can destroy and re-create the box in minutes!

Homestead runs on any Windows, Mac, or Linux system, and includes the Nginx web server, PHP 5.6, MySQL, Postgres, Redis, Memcached, and all of the other goodies you need to develop amazing Laravel applications.




1. Installation without internet connection

http://fian.my.id/larapack/

Why?

Composer is great dependency manager. It's revolutionized the way we are using PHP. But it's slow compare with other dependency manager (like npm or gem). Especially for people who living in certain area that doesn't have fast internet connection.

I love Laravel, and I have seen other PHP developer who want to try Laravel are getting frustated when they want to install it on their computer because Composer is too slow to install any PHP library that needed by Laravel.

I created Larapack to provide you an simple way to install Laravel on your computer. It's also include composer.phar. So if you needed other library for your application, you can install directly with Composer.

Larapack will be updated weekly. But it is intended for PHP developer who still relative new with Laravel and Composer and if you already know about it, I strongly suggest you to install/update it with Composer. I also have modified composer.json inside Larapack to give a boost performance when you try to update your Laravel dependencies.

Download from http://fian.my.id/larapack/

No comments:

Post a Comment