An open API service indexing awesome lists of open source software.

https://github.com/wp-hooks/parser

File scanning and hook parsing functionality for WordPress core, plugins, and themes
https://github.com/wp-hooks/parser

Last synced: 6 months ago
JSON representation

File scanning and hook parsing functionality for WordPress core, plugins, and themes

Awesome Lists containing this project

README

        

# WP Parser Lib

This package contains the file scanning and hook parsing functionality from [WP Parser](https://github.com/WordPress/phpdoc-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](https://getcomposer.org/)

## Installation

```bash
composer require wp-hooks/parser
```

## Usage

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

See [wp-hooks/generator](https://github.com/wp-hooks/generator) as a full usage example.