├── .editorconfig ├── .gitignore ├── README.md ├── composer.json ├── gruntfile.js ├── languages └── wprestcop.pot ├── package.json ├── php ├── AbstractPlugin.php ├── CLI.php ├── IPRules.php ├── IPRulesInterface.php ├── Meter.php ├── MeterMaid.php └── Plugin.php ├── phpcs.xml ├── phpunit.xml ├── tests └── phpunit │ ├── Unit │ ├── IPRulesTest.php │ └── MeterTest.php │ └── bootstrap.php └── wprestcop.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.lock 3 | node_modules/ 4 | phpcs.log 5 | vendor/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/composer.json -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/gruntfile.js -------------------------------------------------------------------------------- /languages/wprestcop.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/languages/wprestcop.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/package.json -------------------------------------------------------------------------------- /php/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/AbstractPlugin.php -------------------------------------------------------------------------------- /php/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/CLI.php -------------------------------------------------------------------------------- /php/IPRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/IPRules.php -------------------------------------------------------------------------------- /php/IPRulesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/IPRulesInterface.php -------------------------------------------------------------------------------- /php/Meter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/Meter.php -------------------------------------------------------------------------------- /php/MeterMaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/MeterMaid.php -------------------------------------------------------------------------------- /php/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/php/Plugin.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/phpunit/Unit/IPRulesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/tests/phpunit/Unit/IPRulesTest.php -------------------------------------------------------------------------------- /tests/phpunit/Unit/MeterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/tests/phpunit/Unit/MeterTest.php -------------------------------------------------------------------------------- /tests/phpunit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/tests/phpunit/bootstrap.php -------------------------------------------------------------------------------- /wprestcop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedaro/wprestcop/HEAD/wprestcop.php --------------------------------------------------------------------------------