Skip to content

Commit 70d3a1e

Browse files
committed
WP-CLI clone at e683d394f89ce923eac2227e655a01fa0255f925
0 parents  commit 70d3a1e

File tree

169 files changed

+29337
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+29337
-0
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# WordPress Coding Standards
5+
# http://make.wordpress.org/core/handbook/coding-standards/
6+
7+
root = true
8+
9+
[*]
10+
charset = utf-8
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
indent_style = tab
15+
indent_size = 4
16+
17+
[*.{json,yml,feature}]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[composer.json]
22+
indent_style = space
23+
indent_size = 4

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Auto detect text files and perform EOL normalization
2+
* text=auto eol=lf
3+
tests/data/*-win.php eol=crlf

.github/ISSUE_TEMPLATE

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!--
2+
3+
Thanks for taking the time to help improve WP-CLI!
4+
5+
Found a bug or want to suggest an enhancement to an existing command? Before creating an issue, please review our best practices: http://wp-cli.org/docs/bug-reports/
6+
7+
Have an idea for something new? Jump into the ideas repo: https://github.com/wp-cli/ideas
8+
9+
Need help with something? Github issues aren't for general support questions, but there are other venues you can try: http://wp-cli.org/#support Make sure you're running the most recent version of WP-CLI! The current version is the only officially supported version.
10+
11+
Want to suggest a feature? Check out the roadmap for how feature development happens: https://wp-cli.org/docs/roadmap/
12+
13+
Oh! It's worth noting WP-CLI represents a collection of sub-projects, each with their own issue tracker. One of these may be a better destination:
14+
15+
* `wp (cache|transient) *` https://github.com/wp-cli/cache-command
16+
* `wp checksum` https://github.com/wp-cli/checksum-command
17+
* `wp config *` https://github.com/wp-cli/config-command
18+
* `wp core *` https://github.com/wp-cli/core-command
19+
* `wp cron *` https://github.com/wp-cli/cron-command
20+
* `wp db *` https://github.com/wp-cli/db-command
21+
* `wp embed *` https://github.com/wp-cli/embed-command
22+
* `wp (eval|eval-file)` https://github.com/wp-cli/eval-command
23+
* `wp export` https://github.com/wp-cli/export-command
24+
* `wp (option|post|comment|user|term|site) *` https://github.com/wp-cli/entity-command
25+
* `wp import` https://github.com/wp-cli/import-command
26+
* `wp language` https://github.com/wp-cli/language-command
27+
* `wp media *` https://github.com/wp-cli/media-command
28+
* `wp package *` https://github.com/wp-cli/package-command
29+
* `wp (plugin|theme) *` https://github.com/wp-cli/extension-command
30+
* `wp rewrite` https://github.com/wp-cli/rewrite-command
31+
* `wp (role|cap) *` https://github.com/wp-cli/role-command
32+
* `wp scaffold *` https://github.com/wp-cli/scaffold-command
33+
* `wp search-replace` https://github.com/wp-cli/search-replace-command
34+
* `wp server` https://github.com/wp-cli/server-command
35+
* `wp shell` https://github.com/wp-cli/shell-command
36+
* `wp super-admin *` https://github.com/wp-cli/super-admin-command
37+
* `wp (widget|sidebar) *` https://github.com/wp-cli/widget-command
38+
39+
You can safely delete this comment.
40+
41+
-->

.github/PULL_REQUEST_TEMPLATE

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!--
2+
3+
Thanks for submitting a pull request!
4+
5+
Please review our contributing guidelines if you haven't recently: https://make.wordpress.org/cli/handbook/contributing/#creating-a-pull-request
6+
7+
Here's an overview to our process:
8+
9+
1. One of the project committers will soon provide a code review (https://make.wordpress.org/cli/handbook/code-review/).
10+
2. You are expected to address the code review comments in a timely manner (if we don't hear from you in two weeks, we'll consider your pull request abandoned).
11+
3. Please make sure to include functional tests for your changes.
12+
4. The reviewing committer will merge your pull request as soon as it passes code review (and provided it fits within the scope of the project).
13+
14+
You can safely delete this comment.
15+
16+
-->

.github/SUPPORT.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Support
2+
=======
3+
4+
Hi there,
5+
6+
GitHub issues are meant for enhancement requests and specific, reproducible bugs, not for general support questions. For support options, please review https://wp-cli.org/#support

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.DS_Store
2+
config.yml
3+
PHAR_BUILD_VERSION
4+
/cache
5+
/packages
6+
/vendor
7+
/*.phar
8+
/phpunit.xml.dist
9+
/codesniffer
10+
/PHP_Codesniffer-VariableAnalysis
11+
.*.swp

.mailmap

+234
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
2ndkauboy <[email protected]>
2+
Akeda Bagus <[email protected]>
3+
Alex Mills <[email protected]>
4+
Anant Shrivastava <[email protected]>
5+
Andreas Heigl <[email protected]>
6+
andreascreten <[email protected]>
7+
Andrew Patton <[email protected]>
8+
andyexeter <[email protected]>
9+
10+
bartaakos <[email protected]>
11+
12+
Bernhard Kau <[email protected]>
13+
Bobby Walters <[email protected]>
14+
BoiteAWeb <[email protected]>
15+
boonebgorges <[email protected]>
16+
Borek Bernard <[email protected]>
17+
18+
Brad Parbs <[email protected]>
19+
Brandon Kraft <[email protected]>
20+
Brian MacKinney <[email protected]>
21+
builtbylane <[email protected]>
22+
23+
24+
Chris Montgomery <[email protected]>
25+
clemens-tolboom <[email protected]>
26+
27+
Corey Worrell <[email protected]>
28+
ctayloroomphinc <[email protected]>
29+
cyberhobo <[email protected]>
30+
daithi-coombes <[email protected]>
31+
dangardner <[email protected]>
32+
Daniel Bachhuber <[email protected]>
33+
danielbachhuber <[email protected]>
34+
danielbachhuber <[email protected]>
35+
danielbachhuber <[email protected]>
36+
Dave Leach <[email protected]>
37+
38+
39+
drrobotnik <[email protected]>
40+
Duncan Brown <[email protected]>
41+
dwightjack <[email protected]>
42+
Eduardo Alencar <[email protected]>
43+
eliorivero <[email protected]>
44+
Enrico Sorcinelli <[email protected]>
45+
ericandrewlewis <[email protected]>
46+
47+
ernilambar <[email protected]>
48+
49+
eugeneware <[email protected]>
50+
Evan Mattson <[email protected]>
51+
Fabian Isele <[email protected]>
52+
francescolaffi <[email protected]>
53+
Frank Staude <[email protected]>
54+
Frankie Jarrett <[email protected]>
55+
future500 <[email protected]>
56+
Gary Jones <[email protected]>
57+
58+
getsource <[email protected]>
59+
Gilbert Pellegrom <[email protected]>
60+
61+
goldenapples <[email protected]>
62+
goldenapples <[email protected]>
63+
Grant McInnes <[email protected]>
64+
Greg Anderson <[email protected]>
65+
hideokamoto <[email protected]>
66+
Hidetaka Okamoto <[email protected]>
67+
68+
hinoue-work <[email protected]>
69+
Hiroshi Urabe <[email protected]>
70+
71+
itsananderson <[email protected]>
72+
73+
jacobischwartz <[email protected]>
74+
Jakub Juszczak <[email protected]>
75+
Jan Voráček <[email protected]>
76+
77+
Jeff Gould <[email protected]>
78+
79+
Jeremy Pry <[email protected]>
80+
jghazally <[email protected]>
81+
jghazally <[email protected]>
82+
Jim Reevior <[email protected]>
83+
84+
John Blackbourn <[email protected]>
85+
johnbillion <[email protected]>
86+
johnpbloch <[email protected]>
87+
johnpbloch <[email protected]>
88+
jonathanbardo <[email protected]>
89+
Jorge A. Torres <[email protected]>
90+
Josh Eaton <[email protected]>
91+
92+
joshlevinson <[email protected]>
93+
joshstoik1 <[email protected]>
94+
Joshua Priddle <[email protected]>
95+
96+
jtsternberg <[email protected]>
97+
98+
Keanan Koppenhaver <[email protected]>
99+
Keith Grennan <[email protected]>
100+
Kevin Doole <[email protected]>
101+
Kevinlearynet <[email protected]>
102+
kidfiction <[email protected]>
103+
lackingpenguin <[email protected]>
104+
leewillis77 <[email protected]>
105+
106+
Marc Addeo <[email protected]>
107+
108+
marcoceppi <[email protected]>
109+
Mark Jaquith <[email protected]>
110+
Mark Kimsal <[email protected]>
111+
Mark McEver <[email protected]>
112+
113+
114+
115+
116+
117+
118+
119+
120+
Mihail Minkov <[email protected]>
121+
Mike Pretzlaw <[email protected]>
122+
mikey dubs <[email protected]>
123+
124+
MiteshShah <[email protected]>
125+
126+
Morgan Estes <[email protected]>
127+
128+
mwilliamson <[email protected]>
129+
mwilliamson <[email protected]>
130+
mwithheld <[email protected]>
131+
132+
Nate Wright <[email protected]>
133+
navitronic <[email protected]>
134+
135+
Ned Zimmerman <[email protected]>
136+
nickdaugherty <[email protected]>
137+
138+
139+
140+
Nilambar Sharma <[email protected]>
141+
Nilambar Sharma <[email protected]>
142+
nschoenholtz <[email protected]>
143+
nullvariable <[email protected]>
144+
nyordanov <[email protected]>
145+
146+
147+
148+
149+
oneumyvakin <[email protected]>
150+
Otto Kekäläinen <[email protected]>
151+
152+
Patrick Karjala <[email protected]>
153+
Pete Nelson <[email protected]>
154+
155+
Peter J. Herrel <[email protected]>
156+
157+
Pippin Williamson <[email protected]>
158+
159+
Rachel Baker <[email protected]>
160+
161+
Rahul Prajapati <[email protected]>
162+
163+
robertboloc <[email protected]>
164+
Robin Schneider <[email protected]>
165+
rodrigoprimo <[email protected]>
166+
rodrigoprimo <[email protected]>
167+
Roel Veldhuizen <[email protected]>
168+
roelveldhuizen <[email protected]>
169+
170+
Ross Hattori <[email protected]>
171+
Ryan Hoover <[email protected]>
172+
Ryan McCue <[email protected]>
173+
Ryan Williams <[email protected]>
174+
175+
santagada <[email protected]>
176+
sboisvert <[email protected]>
177+
178+
179+
sebastiaandegeus <[email protected]>
180+
Shinichi Nishikawa <[email protected]>
181+
sibprogrammer <[email protected]>
182+
simonwheatley <[email protected]>
183+
184+
185+
spacedmonkey <[email protected]>
186+
SpikesDivZero <[email protected]>
187+
spuriousdata <[email protected]>
188+
Stephen Beemsterboer <[email protected]>
189+
Stephen Edgar <[email protected]>
190+
Stephen Harris <[email protected]>
191+
Stephen Harris <[email protected]>
192+
Stephen Harris <[email protected]>
193+
Steve Grunwell <[email protected]>
194+
Steve Grunwell <[email protected]>
195+
Steve Grunwell <[email protected]>
196+
Steve Persch <[email protected]>
197+
Steven K Word <[email protected]>
198+
199+
Stéphane HULARD <[email protected]>
200+
svaj <chris@chrisbot.(none)>
201+
Svetoslav Marinov (Slavi) <[email protected]>
202+
szepeviktor <[email protected]>
203+
204+
205+
thisislawatts <[email protected]>
206+
tiagohillebrandt <[email protected]>
207+
208+
209+
210+
211+
212+
213+
Travis Northcutt <[email protected]>
214+
215+
Tristan Penman <[email protected]>
216+
217+
twratajczak <[email protected]>
218+
Utkarsh Patel <[email protected]>
219+
220+
veganista <[email protected]>
221+
Ville Vuorenmaa <[email protected]>
222+
voldemortensen <[email protected]>
223+
Wendell Júnior <[email protected]>
224+
Wes Moberly <[email protected]>
225+
Wes Moberly <[email protected]>
226+
westonruter <[email protected]>
227+
westonruter <[email protected]>
228+
William Turrell <[email protected]>
229+
230+
231+
232+
233+
234+

0 commit comments

Comments
 (0)