johnbillion / wp-parser-lib
This package is abandoned and no longer maintained.
The author suggests using the wp-hooks/generator package instead.
File scanning and hook parsing functionality from WP Parser.
1.3.0
2022-01-27 13:57 UTC
Requires
- php: >=5.4
- composer/installers: ~1.0
- erusev/parsedown: ~1.7
- phpdocumentor/reflection: ~3.0
This package is auto-updated.
Last update: 2025-07-24 14:48:35 UTC
README
This package contains the file scanning and hook parsing functionality from WP Parser.
I did not write this code. I just abstracted it so it can be used independently of the WP Parser WordPress plugin.
Requirements
- PHP 5.4+
- Composer
Installation
composer require wp-hooks/parser
Usage
$files = \WP_Parser\get_wp_files( $path ); $output = \WP_Parser\parse_files( $files, $path );
See wp-hooks/generator as a full usage example.