LoginSignup
0
2

More than 3 years have passed since last update.

Cloud9でLaravelの環境構築の方法

Posted at

手順

PHPをインストール

$ sudo yum -y update
$ sudo yum -y install php72 php72-mbstring php72-pdo php72-intl php72-pdo_mysql php72-pdo_pgsql php72-xdebug php72-opcache php72-apcu
$ sudo unlink /usr/bin/php
$ sudo ln -s /etc/alternatives/php7 /usr/bin/php
$ php -v

composerをインストール

$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/bin/composer

Laravelをインストール

$ composer global require "laravel/installer"
$ composer create-project laravel/laravel アプリ名 6.* --prefer-dist
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2