tokushima / ebi
This package is abandoned and no longer maintained.
No replacement package was suggested.
5.0.8
2026-09-24 18:19 UTC
Requires
- php: >=8.2
- ext-mbstring: *
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-main
- 5.0.8
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.5.4
- 4.5.3
- 4.5.2
- 4.5.1
- 4.5.0
- 4.4.7
- 4.4.6
- 4.4.5
- 4.4.4
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.7
- 4.3.6
- 4.3.5
- 4.3.4
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
- 4.2.21
- 4.2.20
- 4.2.19
- 4.2.18
- 4.2.17
- 4.2.16
- 4.2.15
- 4.2.14
- 4.2.13
- 4.2.12
- 4.2.10
- 4.2.9
- 4.2.8
- 4.2.7
- 4.2.6
- 4.2.5
- 4.2.4
- 4.2.3
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.1
- 4.1.0
- 4.0.0
- 3.9.19
This package is auto-updated.
Last update: 2026-09-24 18:20:08 UTC
README
2016-09-20 (since: 2012-12-25)
(PHP 8 >= 8.2)
Composer
composer.phar require tokushima/ebi
ドキュメント
- Attribute リファレンス … ルーティング・入力検証・OpenAPI・モデル定義・フロー(MCP) の Attribute 一覧
エディタ支援
コードからは読み込まれない、IDE の補完・検証用のファイル。
- resources/dtd/mail.dtd … メールテンプレート(
\ebi\Mail::set_template)の語彙 - resources/dtd/template.dtd … テンプレート(
\ebi\Template)のrt:語彙 - resources/stubs/cmdman.stub.php … cmdman コマンドから呼べる API
- resources/stubs/testman.stub.php … testman のテストから呼べる API
stub は各ツールの --stub が出力する生成物。手で編集せず再生成する。
cmdman --stub > resources/stubs/cmdman.stub.php
testman --stub > resources/stubs/testman.stub.php
ツール本体とずれると tests/test/ebi/stubs.php が失敗する(ツール未導入の環境ではスキップ)。
VS Code では XML 拡張(redhat.vscode-xml)が DTD を読む。
XML 側に DOCTYPE を書くか、xml.fileAssociations でパターンと結び付ける。
{
"xml.fileAssociations": [
{
"pattern": "**/resources/mail/**/*.xml",
"systemId": "vendor/tokushima/ebi/resources/dtd/mail.dtd"
}
]
}