├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json └── plugin.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Log1x/plugin-meta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | wp-content/ 2 | vendor/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Log1x/plugin-meta/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Log1x/plugin-meta/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Log1x/plugin-meta/HEAD/composer.json -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Log1x/plugin-meta/HEAD/plugin.php --------------------------------------------------------------------------------