├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── library ├── WPAPI.php └── WPAPI │ ├── Attachment.php │ ├── Collection.php │ ├── Index.php │ ├── Media.php │ ├── Object.php │ ├── Post.php │ ├── Posts.php │ ├── User.php │ └── Users.php └── tests ├── SchemaRetriever.php ├── Server.php ├── Server ├── Index.php ├── Post.php └── Posts.php ├── bootstrap.php ├── config.example.php └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | tests/config.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/composer.lock -------------------------------------------------------------------------------- /library/WPAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI.php -------------------------------------------------------------------------------- /library/WPAPI/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Attachment.php -------------------------------------------------------------------------------- /library/WPAPI/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Collection.php -------------------------------------------------------------------------------- /library/WPAPI/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Index.php -------------------------------------------------------------------------------- /library/WPAPI/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Media.php -------------------------------------------------------------------------------- /library/WPAPI/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Object.php -------------------------------------------------------------------------------- /library/WPAPI/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Post.php -------------------------------------------------------------------------------- /library/WPAPI/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Posts.php -------------------------------------------------------------------------------- /library/WPAPI/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/User.php -------------------------------------------------------------------------------- /library/WPAPI/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/library/WPAPI/Users.php -------------------------------------------------------------------------------- /tests/SchemaRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/SchemaRetriever.php -------------------------------------------------------------------------------- /tests/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/Server.php -------------------------------------------------------------------------------- /tests/Server/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/Server/Index.php -------------------------------------------------------------------------------- /tests/Server/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/Server/Post.php -------------------------------------------------------------------------------- /tests/Server/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/Server/Posts.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/config.example.php -------------------------------------------------------------------------------- /tests/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WP-API/client-php/HEAD/tests/phpunit.xml.dist --------------------------------------------------------------------------------