Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 1.12 KB

how-scoping-works.md

File metadata and controls

17 lines (10 loc) · 1.12 KB

How scoping works

The plugin GraphQL API for WordPress is scoped using PHP-Scoper.

PHP-Scoper doesn't work well with WordPress. However, this project can leverage the fine-grained splitting of packages in the repo, where packages are divided into 2 sets:

  • Those containing the business-logic, and contracts for the CMS
  • Those containing the implementation of contracts for WordPress

Then, the plugin can be scoped by avoiding those packages containing WordPress code, for which we must make sure these do not reference code from any external library (which should be scoped); we only scope the business-logic packages, which contain references to all external libraries but no WordPress code.

This way, some packages will be scoped and others will not, and they all form the plugin, tied together via Composer.

Additional resources