[의사록] Mac에 Laavel 설치
개요
PHP는 간단한 웹사이트를 개발할 때 하고 싶은 일을 하지 못해 친구의 추천으로 설치Laravel
했다.
환경 정보
PHP
Mac OS
7.1.16
Mac OS High Sierra (10.13.6)
composier 설치
$ brew install homebrew/core/composer
Laavel의 설치
$ composer global require "laravel/installer"
설치 중인 로그不要
Using version ^2.0 for laravel/installer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 10 installs, 0 updates, 0 removals
- Installing symfony/process (v4.1.4): Downloading (100%)
- Installing symfony/polyfill-ctype (v1.9.0): Downloading (100%)
- Installing symfony/filesystem (v4.1.4): Downloading (100%)
- Installing symfony/polyfill-mbstring (v1.9.0): Downloading (100%)
- Installing symfony/console (v4.1.4): Downloading (100%)
- Installing guzzlehttp/promises (v1.3.1): Downloading (100%)
- Installing psr/http-message (1.0.1): Downloading (100%)
- Installing guzzlehttp/psr7 (1.4.2): Downloading (100%)
- Installing guzzlehttp/guzzle (6.3.3): Downloading (100%)
- Installing laravel/installer (v2.0.1): Downloading (100%)
symfony/console suggests installing psr/log-implementation (For using the console logger)
symfony/console suggests installing symfony/event-dispatcher
symfony/console suggests installing symfony/lock
guzzlehttp/guzzle suggests installing psr/log (Required for using the Log middleware)
Writing lock file
Generating autoload files
경로 통과
$ export PATH="$PATH:$HOME/.composer/vendor/bin"
한 번 불러오기$ source ~/.bashrc
프로젝트 작성
laavel new 명령, 항목으로$ laravel new {プロジェクト名}
{プロジェクト名}
의 섹션을 만든 항목 이름으로 덮어쓰기
이번Sample
구체적 예$ laravel new Sample
설치 중
[추기]
두 번째 이후의 프로젝트 제작을 완성할 수 없기 때문에 아래 명령을 사용하여 프로젝트 파일을 제작할 수 있습니다.$ composer create-project --prefer-dist laravel/laravel SampleProject
or$ composer create-project laravel/laravel SampleProject --prefer-dist
이렇게 하면 SampleProject
프로젝트를 만들기 위해 laavel 버전을 지정합니다
laavel5.5 시스템의 프로젝트 파일 만들기$ composer create-project "laravel/laravel=5.5.*" sampleproject
PHP
Mac OS
7.1.16
Mac OS High Sierra (10.13.6)
composier 설치
$ brew install homebrew/core/composer
Laavel의 설치
$ composer global require "laravel/installer"
설치 중인 로그不要
Using version ^2.0 for laravel/installer
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 10 installs, 0 updates, 0 removals
- Installing symfony/process (v4.1.4): Downloading (100%)
- Installing symfony/polyfill-ctype (v1.9.0): Downloading (100%)
- Installing symfony/filesystem (v4.1.4): Downloading (100%)
- Installing symfony/polyfill-mbstring (v1.9.0): Downloading (100%)
- Installing symfony/console (v4.1.4): Downloading (100%)
- Installing guzzlehttp/promises (v1.3.1): Downloading (100%)
- Installing psr/http-message (1.0.1): Downloading (100%)
- Installing guzzlehttp/psr7 (1.4.2): Downloading (100%)
- Installing guzzlehttp/guzzle (6.3.3): Downloading (100%)
- Installing laravel/installer (v2.0.1): Downloading (100%)
symfony/console suggests installing psr/log-implementation (For using the console logger)
symfony/console suggests installing symfony/event-dispatcher
symfony/console suggests installing symfony/lock
guzzlehttp/guzzle suggests installing psr/log (Required for using the Log middleware)
Writing lock file
Generating autoload files
경로 통과
$ export PATH="$PATH:$HOME/.composer/vendor/bin"
한 번 불러오기$ source ~/.bashrc
프로젝트 작성
laavel new 명령, 항목으로
$ laravel new {プロジェクト名}
{プロジェクト名}
의 섹션을 만든 항목 이름으로 덮어쓰기이번
Sample
구체적 예$ laravel new Sample
설치 중[추기]
두 번째 이후의 프로젝트 제작을 완성할 수 없기 때문에 아래 명령을 사용하여 프로젝트 파일을 제작할 수 있습니다.
$ composer create-project --prefer-dist laravel/laravel SampleProject
or$ composer create-project laravel/laravel SampleProject --prefer-dist
이렇게 하면 SampleProject
프로젝트를 만들기 위해 laavel 버전을 지정합니다
laavel5.5 시스템의 프로젝트 파일 만들기
$ composer create-project "laravel/laravel=5.5.*" sampleproject
sampleproject
임의의 이름으로 하면 됩니다.$ php artisan -V
Laravel Framework 5.5.43
나 이거 하고 싶어.로컬 개발 서버 시작
설치 후
$ cd Sample
에서 Sample 폴더로 이동한 후$ php artisan serve
두드리면Laravel development server started: <http://127.0.0.1:8000>
로그를 표시합니다.방문
プロジェクト名
시 페이지 표시설치가 완료되었습니다.
버전 확인
$ php artisan -V
혹은$ php artisan --version
확인 가능Laravel Framework 5.7.5
Reference
이 문제에 관하여([의사록] Mac에 Laavel 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tamappe/items/2bc0e00cdf4fc16999ab텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)