openSUSE Leap 16

Laravel : インストール2025/11/11

 

PHP の Web アプリケーションフレームワーク Laravel のインストールです。

[1] 事前に PHP Composer をインストールしておきます。
dlp:~ #
zypper -n install php-composer2 php8-fileinfo unzip

[2] 任意の一般ユーザーで Laravel テストプロジェクトを作成して動作確認します。
suse@dlp:~>
mkdir test-project

suse@dlp:~>
cd test-project
# Laravel プロジェクト [my-app] 作成

suse@dlp:~/test-project>
composer create-project laravel/laravel my-app

Creating a "laravel/laravel" project at "./my-app"
Installing laravel/laravel (v12.10.0)
  - Installing laravel/laravel (v12.10.0): Extracting archive
Created project in /home/suse/test-project/my-app
> @php -r "file_exists('.env') || copy('.env.example', '.env');"
Loading composer repositories with package information
Updating dependencies
Lock file operations: 111 installs, 0 updates, 0 removals

.....
.....

81 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> @php artisan vendor:publish --tag=laravel-assets --ansi --force

   INFO  No publishable resources for tag [laravel-assets].

No security vulnerability advisories found.
> @php artisan key:generate --ansi

   INFO  Application key set successfully.

> @php -r "file_exists('database/database.sqlite') || touch('database/database.sqlite');"
> @php artisan migrate --graceful --ansi

   INFO  Preparing database.

  Creating migration table ........................................ 18.26ms DONE

   INFO  Running migrations.

  0001_01_01_000000_create_users_table ............................ 78.86ms DONE
  0001_01_01_000001_create_cache_table ............................ 26.07ms DONE
  0001_01_01_000002_create_jobs_table ............................. 61.86ms DONE

suse@dlp:~/test-project>
cd my-app

suse@dlp:~/test-project/my-app>
php artisan serve --host 0.0.0.0 --port=8000


   INFO  Server running on [http://0.0.0.0:8000].

  Press Ctrl+C to stop the server
  任意のクライアントコンピューターで Web アクセスして、以下のようなページが表示されれば OK です。
[3] 先に作成したプロジェクトで Hello World を作成して動作確認します。
suse@dlp:~>
cd ~/test-project/my-app
# [HelloWorldController] コントローラー作成

suse@dlp:~/test-project/my-app>
php artisan make:controller HelloWorldController


   INFO  Controller [app/Http/Controllers/HelloWorldController.php] created successfully.

suse@dlp:~/test-project/my-app>
vi routes/web.php
# 最終行に追記

Route::get('helloworld', 'App\Http\Controllers\HelloWorldController@index');
suse@dlp:~/test-project/my-app>
vi app/Http/Controllers/HelloWorldController.php
# function 追記

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HelloWorldController extends Controller
{
    public function index()
    {
        return view('helloworld');
    }
}

suse@dlp:~/test-project/my-app>
vi resources/views/helloworld.blade.php
# 表示する HTML 作成

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Hello World</title>
</head>
<body>
<h1 style="width: 100%; font-size: 48px; text-align: center;">
Hello Laravel World!
</h1>
</body>
</html>

suse@dlp:~/test-project/my-app>
php artisan serve --host 0.0.0.0 --port=8000
関連コンテンツ