woocommerce / woocommerce-rest-api
The WooCommerce core REST API.
Installs: 131 681
Dependents: 0
Suggesters: 0
Security: 0
Stars: 44
Watchers: 16
Forks: 35
Open Issues: 18
Type:wordpress-plugin
Requires
- automattic/jetpack-autoloader: ^2.0.0
Requires (Dev)
- phpunit/phpunit: 6.5.14
- woocommerce/woocommerce-sniffs: 0.0.9
- dev-master
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10-pl-2
- 1.0.10-pl-1
- 1.0.10
- 1.0.9
- 1.0.9-rc.2
- 1.0.9-rc1
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/glob-parent-5.1.2
- dev-release/1.0
- dev-release/1.0.10-pl
- dev-vedanshu/temp
- dev-temp
- dev-performance/api-enhancements
- dev-fix/ada-v4-classmap
- dev-enhancement/products
- dev-improve/system-status-v4
This package is auto-updated.
Last update: 2021-06-10 23:52:56 UTC
README
Notice: This plugin is now merged into WooCommerce core, all open issues and PRs will be eventually transfered to WooCommerce core Repo. Please submit all new issues or PRs directly to the core repo.
This repository is home to the WooCommerce REST API package.
The stable version of this package is bundled with WooCommerce core releases, but it can also be used as a standalone plugin so bleeding-edge API features can be tested or used by other feature plugins. We do not recommend using this repo as a standalone plugin in production.
Using this package as a plugin
After checking out the code to your wp-content/plugins
directory, you'll need to run composer install
in the plugin directory (wp-content/plugins/woocommerce-rest-api
) to install dependencies and to enable the autoloader. Without performing this step, if you activate the plugin it will simply show an admin notice.
API documentation
- Usage documentation for the REST API can be found here.
- Contribution documentation can be found here.
Versions
Namespace | Status | Docs |
---|---|---|
wc/v4 |
Development | Link |
wc/v3 |
Stable | Link |
wc/v2 |
Deprecated - October 2020 | Link |
wc/v1 |
Deprecated - April 2019 | Link |
Note: API Versions are kept around for 2 years after being replaced, and may be removed in the next major version after that date passes.
Using this package in other projects
This package is hosted on Packagist and can be included using composer.json:
"require": { "woocommerce/woocommerce-rest-api": "1.0.0" },
Since multiple versions of this package may be included at the same time, it includes a special package-version autoloader. This dependency is also on Packagist:
"automattic/jetpack-autoloader": "^1"
And using this autoloader requires the following include in your codebase:
$autoloader = __DIR__ . '/vendor/autoload_packages.php';
If you choose to use your own autoloader, please note you won't be able to determine which version of the package is running since it could use the version in WooCommerce core or your version. The namespaces would conflict. All of our feature plugins and packages use the package autoloader.
Contributing
Please read the WooCommerce contributor guidelines for more information how you can contribute to WooCommerce, and the REST API contribution documentation here.
Within this package, namespaces and endpoint classes are located within the src/RestAPI/
directory. If you need to change the behavior of an endpoint, you can do so in these classes.
Run tests using phpunit
in the root of the package. All pull-requests must pass unit tests in order to be accepted.
Translation
For strings located in API endpoints, use woocommerce
as your text-domain. These endpoints will be translated in the WooCommerce Core PO/MO files.