All Projects â†’ wp-cli â†’ wp-cli-dev

wp-cli / wp-cli-dev

Licence: other
🛠 WP-CLI development environment that allows for easy development across all packages

Programming Languages

PHP
23972 projects - #3 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to wp-cli-dev

Drupal Vm
A VM for Drupal development
Stars: ✭ 1,348 (+4548.28%)
Mutual labels:  development, environment, local
Beetbox
Pre-provisioned L*MP stack
Stars: ✭ 94 (+224.14%)
Mutual labels:  development, environment, local
Jale
Jale is a blazing fast local development environment for MacOS written in Typescript.
Stars: ✭ 24 (-17.24%)
Mutual labels:  environment, local, development-environment
Lando
A development tool for all your projects that is fast, easy, powerful and liberating
Stars: ✭ 3,142 (+10734.48%)
Mutual labels:  development, environment, local
Pric
Simple zero-config tool to create Private Certificate Authority & issue locally-trusted development server certificates with any domain names you'd like. SSL certificates for development purposes.
Stars: ✭ 87 (+200%)
Mutual labels:  development, development-environment
Vagrant Lamp
My default LAMP development stack for Vagrant
Stars: ✭ 765 (+2537.93%)
Mutual labels:  development, local
Grabs
Front-End Development Environment
Stars: ✭ 89 (+206.9%)
Mutual labels:  development, environment
Takeoff
A rapid development environment using docker for convenience.
Stars: ✭ 271 (+834.48%)
Mutual labels:  development, development-environment
Cra Build Watch
A script for create-react-app that writes development builds to the disk
Stars: ✭ 110 (+279.31%)
Mutual labels:  development, development-environment
Koding
The Simplest Way to Manage Your Entire Dev Infrastructure!
Stars: ✭ 1,945 (+6606.9%)
Mutual labels:  development, development-environment
Trellis
WordPress LEMP stack with PHP 8.0, Composer, WP-CLI and more
Stars: ✭ 2,295 (+7813.79%)
Mutual labels:  wp-cli, local
Dotenv Flow
Loads environment variables from .env.[development|test|production][.local] files for Node.js® projects.
Stars: ✭ 537 (+1751.72%)
Mutual labels:  development, local
Ergo
The management of multiple apps running over different ports made easy
Stars: ✭ 452 (+1458.62%)
Mutual labels:  development, development-environment
Docker-Stack
This repo contains a simple Docker setup with minimal configuration and only few files you can drop into many PHP-based projects.
Stars: ✭ 31 (+6.9%)
Mutual labels:  development, development-environment
Developer Roadmap Guide 2018
Stars: ✭ 344 (+1086.21%)
Mutual labels:  development, development-environment
Loft
Namespace & Virtual Cluster Manager for Kubernetes - Lightweight Virtual Clusters, Self-Service Provisioning for Engineers and 70% Cost Savings with Sleep Mode
Stars: ✭ 239 (+724.14%)
Mutual labels:  development, environment
devproxy
A local development http proxy with hosts spoofing written in Go
Stars: ✭ 35 (+20.69%)
Mutual labels:  development, local
container
Custom containers for various usecases
Stars: ✭ 12 (-58.62%)
Mutual labels:  development, development-environment
easydock
Dockerize your PHP apps ;)
Stars: ✭ 52 (+79.31%)
Mutual labels:  development, local
Docker Compose Starter
Run your development environment with a simple command using docker-compose 🚀
Stars: ✭ 159 (+448.28%)
Mutual labels:  development, development-environment

wp-cli/wp-cli-dev

Sets up a WP-CLI development environment that allows for easy development across all packages.

This allows easy development across all packages and contains additional maintenance commands that simplify repository chores and the release process.

Quick links: Installation | Development | Using | Contributing | Support

Installation

Clone this repository onto your hard drive and then use Composer to install all dependencies:

git clone https://github.com/wp-cli/wp-cli-dev
cd wp-cli-dev
composer install

This will:

  1. Clone all relevant packages from the wp-cli GitHub organization into the wp-cli-dev folder, and
  2. Install all Composer dependencies for a complete wp-cli-bundle setup, while symlinking all of the previously cloned packages into the Composer vendor folder.
  3. Symlink all folder in vendor into corresponding vendor folders in each repository, thus making the centralized functionality based on Composer available in each repository subfolder.

Development

Every subfolder is a proper clone of the corresponding GitHub repository. This means that you can create new branches, make your changes, commit to the new branch and then submit as pull-request, all from within these folders.

As the folders are also symlinked into the Composer vendor folder, you will always have the latest changes available when running WP-CLI through the vendor/bin/wp executable.

Using

This package implements the following commands:

wp maintenance

Provides tools to manage the WP-CLI GitHub organization and the release process.

wp maintenance

wp maintenance contrib-list

Lists all contributors to this release.

wp maintenance contrib-list [--format=<format>]

Run within the main WP-CLI project repository.

OPTIONS

[--format=<format>]
	Render output in a specific format.
	---
	default: markdown
	options:
	  - markdown
	  - html
	---

wp maintenance milestones-after

Retrieves the milestones that were closed after a given milestone.

wp maintenance milestones-after <repo> <milestone>

OPTIONS

<repo>
	Name of the repository to fetch the milestones for.

<milestone>
	Milestone to serve as treshold.

wp maintenance milestones-since

Retrieves the milestones that were closed for a given repository after a

wp maintenance milestones-since <repo> <date>

specific date treshold.

OPTIONS

<repo>
	Name of the repository to fetch the milestones for.

<date>
	Threshold date to filter by.

wp maintenance release-date

Retrieves the date a given release for a repository was published at.

wp maintenance release-date <repo> <release>

OPTIONS

<repo>
	Name of the repository to fetch the release notes for. If no user/org
	was provided, 'wp-cli' org is assumed.

<release>
	Name of the release to fetch the release notes for.

wp maintenance release-notes

Gets the release notes for one or more milestones of a repository.

wp maintenance release-notes [<repo>] [<milestone>...] [--source=<source>] [--format=<format>]

OPTIONS

[<repo>]
	Name of the repository to fetch the release notes for. If no user/org
	was provided, 'wp-cli' org is assumed. If no repo is passed, release
	notes for the entire org state since the last bundle release are fetched.

[<milestone>...]
	Name of one or more milestones to fetch the release notes for. If none
	are passed, the currently open one is assumed.

[--source=<source>]
	Choose source from where to copy content.
	---
	default: release
	options:
	  - release
	  - pull-request

[--format=<format>]
	Render output in a specific format.
	---
	default: markdown
	options:
	  - markdown
	  - html
	---

wp maintenance replace-label

Replaces a label with a different one, and optionally deletes the old

wp maintenance replace-label <repo> <old-label> <new-label> [--delete]

label.

OPTIONS

<repo>
	Name of the repository you want to replace a label for.

<old-label>
	Old label to replace on all issues.

<new-label>
	New label to replace it with.

[--delete]
	Delete the old label after the operation is complete.

Contributing

We appreciate you taking the initiative to contribute to this project.

Contributing isn’t limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.

For a more thorough introduction, check out WP-CLI's guide to contributing. This package follows those policies and guidelines.

Reporting a bug

Think you’ve found a bug? We’d love for you to help us get it fixed.

Before you create a new issue, you should search existing issues to see if there’s an existing resolution to it, or if it’s already been fixed in a newer version.

Once you’ve done a bit of searching and discovered there isn’t an open or fixed issue for your bug, please create a new issue. Include as much detail as you can, and clear steps to reproduce if possible. For more guidance, review our bug report documentation.

Creating a pull request

Want to contribute a new feature? Please first open a new issue to discuss whether the feature is a good fit for the project.

Once you've decided to commit the time to seeing your pull request through, please follow our guidelines for creating a pull request to make sure it's a pleasant experience. See "Setting up" for details specific to working on this package locally.

Support

Github issues aren't for general support questions, but there are other venues you can try: https://wp-cli.org/#support

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].