php-censor/docs/en/plugins/phar.md
2018-01-20 16:52:45 +07:00

25 lines
586 B
Markdown

Plugin Phar
===========
Allows you to create a [Phar](http://php.net/manual/en/book.phar.php) archive from your project.
Configuration
-------------
### Options
* **directory**: `phar` output directory. Default: `%buildpath%`;
* **filename**: `phar` filename inside output directory. Default: `build.phar`;
* **regexp**: regular expression for Phar iterator. Default: `/\.php$/`; and
* **stub**: stub content filename. No default value.
### Examples
```yaml
phar:
directory: /path/to/directory
filename: foobar.phar
regexp: /\.(php|phtml)$/
stub: filestub.php
```