https://github.com/sunaoka/phpdocumentor3-template-ja
phpDocumentor 3 Japanese templates / phpDocumentor 3 日本語テンプレート
https://github.com/sunaoka/phpdocumentor3-template-ja
japanese php phpdoc phpdocumentor template
Last synced: 11 months ago
JSON representation
phpDocumentor 3 Japanese templates / phpDocumentor 3 日本語テンプレート
- Host: GitHub
- URL: https://github.com/sunaoka/phpdocumentor3-template-ja
- Owner: sunaoka
- License: mit
- Created: 2020-06-08T01:47:42.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2021-07-28T07:42:03.000Z (over 4 years ago)
- Last Synced: 2025-02-11T14:58:11.931Z (12 months ago)
- Topics: japanese, php, phpdoc, phpdocumentor, template
- Language: Twig
- Homepage: https://packagist.org/packages/sunaoka/php-documentor3-template-ja
- Size: 81.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phpDocumentor 3 Japanese templates
[](https://packagist.org/packages/sunaoka/php-documentor3-template-ja)
[](https://packagist.org/packages/sunaoka/php-documentor3-template-ja)
---
This is a Japanese translation of the [phpDocumentor](https://github.com/phpDocumentor/phpDocumentor) (v3.x) template.
## Installation
```bash
composer require --dev sunaoka/php-documentor3-template-ja
```
## Usage
### Using Phive
```bash
phive install --force-accept-unsigned phpDocumentor
php tools/phpDocumentor \
-d src \
-t output --template vendor/sunaoka/php-documentor3-template-ja/default-ja
```
### Using the PHAR
```bash
curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.1.0/phpDocumentor.phar
php phpDocumentor.phar \
-d src \
-t output --template vendor/sunaoka/php-documentor3-template-ja/default-ja
```
### Via Docker
```bash
docker run --rm -v $(pwd):/data phpdoc/phpdoc \
-d src \
-t output \
--template /data/vendor/sunaoka/php-documentor3-template-ja/default-ja
```
### Via Composer (not recommended)
```bash
composer require --dev phpdocumentor/phpdocumentor
vendor/bin/phpdoc \
-d src \
-t output \
--template vendor/sunaoka/php-documentor3-template-ja/default-ja
```