johnbillion/wp-parser-lib

File scanning and hook parsing functionality from WP Parser.

1.3.0 2022-01-27 13:57 UTC

This package is auto-updated.

Last update: 2024-04-09 15:54:04 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

Installation

composer require johnbillion/wp-parser-lib

Usage

$files  = \WP_Parser\get_wp_files( $path );
$output = \WP_Parser\parse_files( $files, $path );

See wp-hooks/generator as a full usage example.