1. 程式人生 > >Laravel5.03開發環境搭建

Laravel5.03開發環境搭建

1、下載laravel  https://github.com/laravel/laravel 

2、安裝composer http://www.phpcomposer.com/

3、配置php.ini 

        extension=php_mbstring.dll  

extension=php_openssl.dll

        openssl.cafile=從 http://curl.haxx.se/docs/caextract.html 下載其轉換的證書 cert.pem 

4、cd到laravel目錄,composer install

5、cmd重新命名.env.example .env (rename .env.example .env)

6、php artisan key:generate  

7、執行php自帶http伺服器

    cd /d %cd%/public
    php -S localhost:8000