File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 2
2
*
3
3
4
4
! .gitignore
5
- ! Makefile
5
+ ! LICENSE
6
+ ! Makefile
7
+ ! README.md
Original file line number Diff line number Diff line change
1
+ # PHP 日本語マニュアル 翻訳用リポジトリ
2
+
3
+ ![ License] ( https://img.shields.io/badge/license-MIT-blue.svg )
4
+ ![ PHP Version] ( https://img.shields.io/badge/PHP-%3E%3D8.3-8892BF.svg )
5
+
6
+ ## 概要
7
+
8
+ - 日本語マニュアルの翻訳に必要なリポジトリや、ビルドなどを行うための Makefile を用意しています。
9
+ - ローカルに PHP をインストールして使用してください。
10
+ - PHP 8.3.13 (cli)
11
+
12
+ ## セットアップ
13
+
14
+ ``` bash
15
+ make setup
16
+ ```
17
+
18
+ セットアップを行うことで、以下のようなディレクトリ構成になります。
19
+
20
+ ```
21
+ .
22
+ ├── Makefile # プロジェクトのビルド・実行用のMakefile
23
+ ├── doc-base # ドキュメントベースの設定ファイル
24
+ ├── en # 英語版のドキュメント
25
+ ├── ja # 日本語版のドキュメント
26
+ ├── output # 生成物が格納されるディレクトリ
27
+ └── phd # ドキュメントビルドツール
28
+ ```
29
+
30
+ ## ビルド
31
+
32
+ ``` bash
33
+ make build
34
+ make xhtml
35
+ ```
36
+
37
+ ## ローカルで確認
38
+
39
+ ``` bash
40
+ make open
41
+ ```
42
+
43
+ ## 参考
44
+
45
+ https://doc.php.net/guide/local-setup.md
You can’t perform that action at this time.
0 commit comments