ammonkc / laravel-wp-api
A Laravel Client for Wordpress REST Api
Requires
- guzzlehttp/guzzle: ^6.3
- illuminate/support: ~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0
- vnn/wordpress-rest-api-client: ^1.2.0
Requires (Dev)
- orchestra/testbench: ^3.5
- vlucas/phpdotenv: ^2.4
This package is auto-updated.
Last update: 2024-11-04 08:26:08 UTC
README
A Wordpress REST API client for Laravel.
Installation
Composer
Execute the following command to get the latest version of the package:
$ composer require ammonkc/laravel-wp-api
Laravel
>= laravel5.5
ServiceProvider will be attached automatically
Other
In your config/app.php
add Ammonkc\WpApi\WpApiServiceProvider::class
to the end of the providers
array:
'providers' => [ ... Ammonkc\WpApi\WpApiServiceProvider::class, ],
Configuration
Publish Configuration
php artisan vendor:publish --provider "Ammonkc\WpApi\WpApiServiceProvider"
Version
- 1.0.0
Licence
This project is open-sourced software licensed under the MIT license
Installing as a dependency on a laravel project
Is very likely you'll need to install this package locally to test the integration. You can do so by adding the follow to the composer.json
file in your laravel project.
"repositories": [ { "type": "path", "url": "path/to/package/folder" } ],
Then, in your laravel project root path you can just run:
$ composer require namespace/package-name
Credits
This package leverages vnn/wordpress-rest-api-client with added enhancements for laravel