Laravel 提供新的便捷安装途径了!此刻该有👍
Laravel 在推特被吐槽安装很麻烦,不适合新手。随即 Laravel 团队就做了一键安装脚本。降低了入门门槛。
这次文档新增了新的安装方式,都是一键化脚本。支持 macos,windows 还有 linux。
# macos
/bin/bash -c "$(curl -fsSL https://php.new/install/mac)"
# windows
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://php.new/install/windows'))
#linux
/bin/bash -c "$(curl -fsSL https://php.new/install/linux)"
脚本会安装 PHP Composer 和 Laravel installer。成功之后可以直接使用
Laravel new example-app
cd example-app
php artisan serve
👏欢迎来到 Laravel World
本作品采用《CC 协议》,转载必须注明作者和本文链接
推荐文章: