├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── spec └── WPUpdatePhpSpec.php └── src └── WPUpdatePhp.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.lock 3 | 4 | /.idea/ 5 | /vendor/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPupdatePHP/wp-update-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPupdatePHP/wp-update-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPupdatePHP/wp-update-php/HEAD/composer.json -------------------------------------------------------------------------------- /spec/WPUpdatePhpSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPupdatePHP/wp-update-php/HEAD/spec/WPUpdatePhpSpec.php -------------------------------------------------------------------------------- /src/WPUpdatePhp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WPupdatePHP/wp-update-php/HEAD/src/WPUpdatePhp.php --------------------------------------------------------------------------------