Skip to content

Commit 5b1a409

Browse files
committed
Initial commit
0 parents  commit 5b1a409

Some content is hidden

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

61 files changed

+4768
-0
lines changed

.distignore

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# A set of files you probably don't want in your WordPress.org distribution
2+
.babelrc
3+
.deployignore
4+
.distignore
5+
.dockerignore
6+
.editorconfig
7+
.eslintignore
8+
.eslintrc
9+
.git
10+
.gitattributes
11+
.gitignore
12+
.gitmoji-changelogrc
13+
.gitlab-ci.yml
14+
.travis.yml
15+
.DS_Store
16+
Thumbs.db
17+
behat.yml
18+
bitbucket-pipelines.yml
19+
bin
20+
.circleci/config.yml
21+
composer.json
22+
composer.lock
23+
docker-compose.yml
24+
docker-*.sh
25+
Dockerfile
26+
dependencies.yml
27+
Gruntfile.js
28+
package.json
29+
package-lock.json
30+
phpunit.xml
31+
phpunit.xml.dist
32+
multisite.xml
33+
multisite.xml.dist
34+
.phpcs.xml
35+
phpcs.xml
36+
.phpcs.xml.dist
37+
phpcs.xml.dist
38+
README.md
39+
webpack.config.js
40+
wp-cli.local.yml
41+
yarn.lock
42+
tests
43+
vendor
44+
node_modules
45+
*.sql
46+
*.tar.gz
47+
*.zip

.dockerignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore CI docker-compose
2+
docker-compose.yml

.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# WordPress Coding Standards
5+
# https://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+
[{.jshintrc,*.json,*.yml}]
18+
indent_style = space
19+
indent_size = 2
20+
21+
[{*.txt,wp-config-sample.php}]
22+
end_of_line = crlf

.env

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
########################################
3+
# WordPress configuration
4+
########################################
5+
6+
WP_VERSION=5.5
7+
WP_PLUGIN=wp-plugin-template
8+
9+
DOMAIN=yopmail.com
10+
WORDPRESS_BLOG_NAME=WP-Rocks
11+
12+
WORDPRESS_DB_ROOT_PWD=wordpress
13+
14+
WORDPRESS_DB_TYPE=mysql
15+
WORDPRESS_DB_NAME=wordpressdb
16+
WORDPRESS_DB_USER=wordpress
17+
WORDPRESS_DB_PWD=wordpress
18+
19+
WORDPRESS_ADMIN_LOGIN=root
20+
WORDPRESS_ADMIN_PWD=wordpress
21+
22+
WORDPRESS_TBL_PREFIX=wps_
23+
24+
# Use WordPress specific SMTP account
25+
WORDPRESS_SMTP_USER=
26+
WORDPRESS_SMTP_PWD=
27+

.eslintignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/*.min.js
2+
Gruntfile.js
3+
vendor
4+
node_modules

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ]
3+
}

.gitattributes

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Autodetect text files
2+
* text=auto
3+
4+
# ...Unless the name matches the following
5+
# overriding patterns
6+
7+
# Definitively text files
8+
*.txt text
9+
*.svg text
10+
*.md text
11+
*.sh text eol=lf
12+
*.yml text eol=lf
13+
Dockerfile text eol=lf
14+
*.js text eol=lf
15+
16+
# Ensure those won't be messed up with
17+
*.jpg binary
18+
*.jpeg binary
19+
*.png binary
20+
*.data binary

.github/ISSUE_TEMPLATE/bug_report.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
3+
name: Bug report
4+
about: Create a report to help us improve
5+
title: ''
6+
labels: bug
7+
assignees:
8+
9+
---
10+
11+
**Describe the bug**
12+
A clear and concise description of what the bug is.
13+
14+
**To Reproduce**
15+
Steps to reproduce the behavior:
16+
1. Go to '...'
17+
2. Click on '....'
18+
3. Scroll down to '....'
19+
4. See error
20+
21+
**Expected behavior**
22+
A clear and concise description of what you expected to happen.
23+
24+
**Screenshots**
25+
If applicable, add screenshots to help explain your problem.
26+
27+
**Desktop (please complete the following information):**
28+
29+
- OS: (e.g. iOS)
30+
- Browser (e.g. chrome, safari)
31+
- Version (e.g. 22)
32+
33+
**Smartphone (please complete the following information):**
34+
35+
- Device: (e.g. iPhone6)
36+
- OS: (e.g. iOS8.1)
37+
- Browser (e.g. stock browser, safari)
38+
- Version (e.g. 22)
39+
40+
**Additional context**
41+
Add any other context about the problem here.
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
3+
name: Feature request
4+
about: Suggest an idea for this project
5+
title: ''
6+
labels: enhancement
7+
assignees:
8+
9+
---
10+
11+
**Is your feature request related to a problem? Please describe.**
12+
A clear and concise description of what the problem is. Ex. I'm always frustrated when (...)
13+
14+
**Describe the solution you'd like**
15+
A clear and concise description of what you want to happen.
16+
17+
**Describe alternatives you've considered**
18+
A clear and concise description of any alternative solutions or features you've considered.
19+
20+
**Additional context**
21+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--
2+
3+
Some key notes before you open a PR:
4+
5+
1. Select which branch should this PR be merged in? By default, you should always merge to the develop branch.
6+
2. PR name follows [convention](http://karma-runner.github.io/4.0/dev/git-commit-msg.html)
7+
3. All tests pass locally, UI and Unit tests
8+
4. All business logic and validations must be on the server-side
9+
5. Update necessary Documentation
10+
6. Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes
11+
12+
13+
Also, if you're new here
14+
15+
- Contribution Guide => https://github.com/Monogramm/wp-plugin-template/blob/master/CONTRIBUTING.md
16+
17+
-->
18+
19+
> Please provide enough information so that others can review your pull request:
20+
21+
<!-- You can skip this if you're fixing a typo or updating existing documentation -->
22+
23+
> Explain the **details** for making this change. What existing problem does the pull request solve?
24+
25+
<!-- Example: When "Adding a function to do X", explain why it is necessary to have a way to do X. -->
26+
27+
> Screenshots/GIFs
28+
29+
<!-- Add images/recordings to better visualize the change: expected/current behviour -->

.github/config.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome
2+
3+
# Comment to be posted to on first time issues
4+
newIssueWelcomeComment: >
5+
Thanks for opening your first issue here! Be sure to follow the issue template!
6+
7+
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome
8+
9+
# Comment to be posted to on PRs from first time contributors in your repository
10+
newPRWelcomeComment: >
11+
Thanks for opening this pull request! Please check out our contributing guidelines.
12+
13+
# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge
14+
15+
# Comment to be posted to on pull requests merged by a first time user
16+
firstPRMergeComment: >
17+
:tada: Congrats on merging your first pull request! We here at behaviorbot are proud of you!
18+
19+
# It is recommend to include as many gifs and emojis as possible
20+
21+
# Configuration for request-info - https://github.com/behaviorbot/request-info
22+
23+
# *Required* Comment to reply with
24+
requestInfoReplyComment: >
25+
We would appreciate it if you could provide us with more info about this issue/pr!
26+
27+
# *OPTIONAL* default titles to check against for lack of descriptiveness
28+
# MUST BE ALL LOWERCASE
29+
requestInfoDefaultTitles:
30+
- update readme.md
31+
- updates
32+
33+
34+
# *OPTIONAL* Label to be added to Issues and Pull Requests with insufficient information given
35+
requestInfoLabelToAdd: needs-more-info

.github/stale.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an issue becomes stale
4+
daysUntilStale: 60
5+
# Number of days of inactivity before a stale issue is closed
6+
daysUntilClose: 30
7+
8+
# Issues with these labels will never be considered stale
9+
exemptLabels:
10+
- pinned
11+
- security
12+
13+
# Label to use when marking an issue as stale
14+
staleLabel: wontfix
15+
16+
# Comment to post when marking an issue as stale. Set to `false` to disable
17+
markComment: >
18+
This issue has been automatically marked as stale because it has not had
19+
recent activity. It will be closed if no further activity occurs. Thank you
20+
for your contributions.
21+
22+
# Comment to post when closing a stale issue. Set to `false` to disable
23+
closeComment: false

.github/workflows/hooks.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
name: Docker Image CI
3+
4+
on:
5+
push:
6+
branches:
7+
- master
8+
- develop
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
version: ['5.6', '5.5', '5.4', '5.3']
16+
17+
steps:
18+
- name: Check Out Repo
19+
uses: actions/checkout@v2
20+
21+
- name: Execute CI tests
22+
id: docker_build
23+
run: |
24+
export WP_VERSION=${{ matrix.version }}
25+
./manage.sh test
26+
27+
- name: Display docker images
28+
run: docker images

.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# ignore everything in the root except the "wp-content" directory.
2+
!wp-content/
3+
4+
# ignore everything in the "wp-content" directory, except:
5+
# "mu-plugins", "plugins", "themes" directory
6+
wp-content/*
7+
!wp-content/mu-plugins/
8+
!wp-content/plugins/
9+
!wp-content/themes/
10+
11+
# ignore these plugins
12+
wp-content/plugins/hello.php
13+
14+
# ignore specific themes
15+
wp-content/themes/twenty*/
16+
17+
# ignore node dependency directories
18+
node_modules/
19+
20+
# ignore composer dependency directories
21+
vendor/
22+
23+
# ignore log files, databases and archives
24+
*.log
25+
*.sql
26+
*.sqlite
27+
*.tar.gz
28+
*.zip
29+
30+
# ignore miscellaneous files
31+
phpcs.xml
32+
phpunit.xml
33+
wp-cli.local.yml
34+
35+
# ignore miscellaneous files
36+
.DS_Store
37+
Thumbs.db

.gitlab/issue_templates/bug_report.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Bug report
2+
3+
Create a report to help us improve.
4+
5+
/label ~bug
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Expected behavior**
18+
A clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
If applicable, add screenshots to help explain your problem.
22+
23+
**Desktop (please complete the following information):**
24+
25+
- OS: (e.g. iOS)
26+
- Browser (e.g. chrome, safari)
27+
- Version (e.g. 22)
28+
29+
**Smartphone (please complete the following information):**
30+
31+
- Device: (e.g. iPhone6)
32+
- OS: (e.g. iOS8.1)
33+
- Browser (e.g. stock browser, safari)
34+
- Version (e.g. 22)
35+
36+
**Additional context**
37+
Add any other context about the problem here.

0 commit comments

Comments
 (0)