cocur/watchman
Composer 安装命令:
composer require cocur/watchman
包简介
PHP wrapper for facebook/watchman
README 文档
README
PHP wrapper for
facebook/watchman.
Features
- Simple PHP wrapper for
facebook/watchman - Add, list and delete watched directories
- Add, list and delete triggers
- Compatible with PHP >= 5.4 and HHVM
Installation
You can install cocur/watchman through Composer:
$ composer require cocur/watchman:@stable
In a production environment you should replace @stable with the version you want to use.
Usage
use Cocur\Watchman\Watchman; $watchman = new Watchman(); $watch = $watchman->addWatch('/var/www/foobar'); $trigger = $watch->addTrigger('foo', '*.js', 'ls -al'); // Retrieve all watched directories $watched = $watchman->listWatches(); // Retrieve all triggers from a watch $triggers = $watch->listTriggers(); // Later... $trigger->delete(); $watch->delete();
Supported Watchman commands
- watch ✓
- watch-list ✓
- watch-del ✓
- clock ✓
- trigger ✓
- trigger-list ✓
- trigger-del ✓
- find ✓
- query ✓
- since ✓
- log-level ✓
- log ✓
- shutdown-server ✓
subscribeunsubscribe- get-sockname ✓
Changelog
Version 0.1 (27 April 2014)
- Initial release
- Add, delete and list watched directories
- Add, delete and list triggers
Author
License
The MIT license applies to cocur/watchman. For the full copyright and license information, please view the LICENSE file distributed with this source code.
统计信息
- 总下载量: 1.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-04-27