Written by
php-style
on
on
[Laravel] 개발환경 구축
[Laravel] 개발환경 구축
- 기본 PHP개발환경 (Bitnami를 통한 PHP, apache, mariaDB)
- composer
Laravel 설치 및 프로젝트 생성
cmd창 열고 원하는 위치로 이동하여 'test'라는 프로젝트 생성하기
composer create-project --prefer-dist laravel/laravel test
- Your requirements could not be resolved to an installable set of packages. 오류 발생시
php.ini파일에서
;extension=fileinfo를
extenstion-fileinfo로 변경
- 성공
설치가 완료되면 test폴더로 이동하여 artisan serve로 서버 열기
웹 브라우저에 http://127.0.0.1:8000/ 로 접속
from http://soda-dev.tistory.com/45 by ccl(A) rewrite - 2021-11-07 23:00:40