承接 enpii/wp-proj 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

enpii/wp-proj

Composer 安装命令:

composer require enpii/wp-proj

包简介

The WordPress project setup for WordPress modern development with Laravel featuring EnpiiBase plugin

README 文档

README

Initialize

  • Create the project (stable version)
composer create-project enpii/wp-proj <folder-name>
  • Use development version (branch master)
composer create-project -s dev enpii/wp-proj <folder-name>

in case you want to specify the branch (e.g. branch develop)

composer create-project -s dev enpii/wp-proj:dev-develop <folder-name>
  • Ensure that you have the .env file, if it doesn't exists, you can copy from the example file
cp .env.example .env
  • Then use the appropriate env variables for you working environment, remember to check the SALTS section to use correct ones.

Development

  • Install (or update) the dependencies
docker run --rm --interactive --tty -e XDEBUG_MODE=off -v $PWD:/app -v ~/.composer:/root/.composer npbtrac/php80_cli composer install

Deploy with Docker

The Docker file is built on top of serversideup/docker-php https://github.com/serversideup/docker-php (which are ready for production according to Server Side Up team)

  • Start all containers
docker-compose up -d

then the website would be available at http://127.0.0.1:19180/ (the port 19180 can be edited in .env file) - If WP_DEBUG set to 0 or 'off' or not set, the container wordpress would have xDebug working as we are in the debug mode

  • Update composer with Docker (disable xDebug should help the composer install/update faster)
docker-compose exec -e XDEBUG_MODE=off wordpress composer update
  • Run wp-cli (you must run with the user webuser to avoid running as root)
docker-compose exec --user=webuser wordpress wp plugin list

or check system info

docker-compose exec --user=webuser wordpress wp enpii-base info

or add Admin user

docker-compose exec --user=webuser wordpress wp user create <admin_username> <admin_email> --user_pass=<admin_password> --role=administrator
  • Run wp-app artisan
docker-compose exec --user=webuser wordpress ./wp-enpii-base-artisan wp-app:hello

or

docker-compose exec --user=webuser wordpress wp enpii-base artisan wp-app:hello

Working with GIT

  • You can put your own plugins, themes, mu-plugins to corresponding folders. Then if you use git, you can add these things to your repository by:
    • Update the ./wp-content/.gitignore to allow your plugins, mu-plugins, themes
    • e.g. you have a plugin called hello-world, you need to add this
    !plugins/hello-world
    !plugins/hello-world/**
    
    • Then you can git add <your-plugin-folder> to the repo

Compiling assets (CSS, JS)

  • This repo consists of a sample plugin Demoda and a sample theme Appeara Alpha, it has the webpack configs to compile plugin and theme CSS and JS. The assets would be compiled to public-assets/dist folders

To install dependencies

docker compose exec wordpress yarn install

Compile plugin assets

docker compose exec wordpress yarn build-plugin

or to watch and compile

docker compose exec wordpress yarn dev-plugin

Similarly to the theme with

docker compose exec wordpress yarn build-theme

and watch

docker compose exec wordpress yarn dev-theme

Working with Translation

  • Create the pot file for the Appeara Alpha theme
docker compose exec --user=webuser wordpress yarn i18n:make-pot <path/of/plugin-or-theme/folder> <path/to/pot-file>

e.g.

docker compose exec --user=webuser wordpress yarn i18n:make-pot public/wp-content/themes/appeara-alpha public/wp-content/themes/appeara-alpha/languages/appeara-alpha.pot

Notes: if you are using Yarn < 1.0, you need to add -- before arguments like this

docker compose exec --user=webuser wordpress yarn i18n:make-pot -- public/wp-content/themes/appeara-alpha public/wp-content/themes/appeara-alpha/languages/appeara-alpha.pot
  • Update the pot file to existing po files (same parent folder)
docker compose exec --user=webuser wordpress yarn i18n:update-po <path/to/pot-file>

e.g.

docker compose exec --user=webuser wordpress yarn i18n:update-po public/wp-content/themes/appeara-alpha/languages/appeara-alpha.pot
  • Create mo file (from po file), same parent folder
docker compose exec --user=webuser wordpress yarn i18n:make-mo <po-path>

e.g.

docker compose exec --user=webuser wordpress yarn i18n:make-mo public/wp-content/themes/appeara-alpha/languages/appeara-alpha-vi.po

Notes: Of course you can update the script (in package.json) to match your project.

Working with PHP Code Styling (PHPCS)

  • Check PHP code style of the project (using phpcs configuration file)
docker compose exec wordpress yarn phpcs
  • Check PHP code style of a certain directory
docker compose exec wordpress yarn phpcs <path/to/folder>

e.g.

docker compose exec wordpress yarn phpcs public/wp-content/plugins/demoda

you should use the relative path

  • Repair PHP code style
docker compose exec wordpress yarn phpcbf <path/to/folder>

e.g.

docker compose exec wordpress yarn phpcbf public/wp-content/plugins/demoda

Working with Unit Test

This project uses PHPUnit and configured Codeception Test framework. You should use PHPUnit to run the test because it supports isolationProcess which allow Mockery overload, alias to happen. You can run Codeception if you want.

Creating test files

  • Add a new Unit Test file
docker-compose exec --user=webuser wordpress wp enpii-base artisan wp-app:make:phpunit <relative/path/without/.php>

e.g

docker-compose exec --user=webuser wordpress wp enpii-base artisan wp-app:make:phpunit tests/Unit/Demoda/App/WP/Tmp_Test

or with Codeception

docker compose exec wordpress yarn codecept:generate-unit Demoda/Test/Test.php

this command will create the file Demoda/Test/Test.php to the path of codeception unit setting suites/tests/unit. DO REMEMBER to use the setUp() method instead of the _before() to be able to run the test file with the PHPUnit as well.

Running Unit Test

  • Run Unit Test on a single file/folder with PHPUnit
docker compose exec wordpress yarn phpunit tests/Unit/Demoda
  • If you want to run Unit Test for a file/folder and only want the coverage report on a certain file/folder you can run with PHPUnit
docker compose exec wordpress yarn phpunit:coverage-single --whitelist=<path/to/folder/to/perform/the/coverage> <path/to/test/folder>

e.g. (with extra --debug option)

docker compose exec wordpress yarn phpunit:coverage-single --bootstrap=tests/bootstrap-unit.php --debug --whitelist=public/wp-content/plugins/demoda/src/App/WP/Demoda_WP_Plugin.php tests/Unit/Demoda/App/WP/Demoda_WP_Plugin_Test.php
  • Run Unit Test with PHPUnit (with coverage report to the folder tests/_output/phpunit)
docker compose exec wordpress yarn phpunit:coverage-html tests/_output/phpunit

or you just want to see the result in the console (not an HTML file)

docker compose exec wordpress yarn phpunit:coverage

Notes: You can use Codeception for Unit testing as the configuration is there but Codeception does not support isolationProcess, that means the test with Mokery overload would fail.

docker compose exec wordpress yarn codecept:unit

enpii/wp-proj 适用场景与选型建议

enpii/wp-proj 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 04 月 17 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「wordpress」 「boilerplate」 「laravel」 「wordpress laravel」 「EnpiiBase」 「EnpiiTeam」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 enpii/wp-proj 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 enpii/wp-proj 我们能提供哪些服务?
定制开发 / 二次开发

基于 enpii/wp-proj 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 19
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 16
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-04-17