Skip to content

Commit 8a3075a

Browse files
author
hellofromtonya
committed
documentation updates
1 parent e86afe3 commit 8a3075a

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# UpDevTools Contributing Guide
22

3-
:+1::tada: WooHoo, thank you for taking the time to contribute! You rock! :tada::+1:
3+
WooHoo, thank you for taking the time to contribute! You rock!
44

55
We welcome all contributions including feedback, bug reports, and pull requests. Have an idea for a tool or feature? Awesome. Jump in and contribute.
66

@@ -9,22 +9,22 @@ We welcome all contributions including feedback, bug reports, and pull requests.
99
[How Can I Contribute?](#how-can-i-contribute)
1010
* [Reporting Bugs](#reporting-bugs)
1111
* [Feature Requests](#feature-requests)
12-
* [Merge - Pull Requests](#merge-requests)
12+
* [Pull Requests](#merge-requests)
1313

1414
## How Can I Contribute?
1515

1616
There are many ways to contribute. This suite of tools is for you. It's up to all of us to contribute in order to make it the development suite we all want and need.
1717

1818
### Reporting Bugs
1919

20-
Whoopsie, did you find a bug? Here's what you want to do. Open up our [issue tracker](https://gitlab.com/uptechlabs/updevtools/issues). Then submit a new issue and mark it with a `bug` label. We use the labels to identify the different types of tasks, including buggies.
20+
Whoopsie, did you find a bug? Here's what you want to do. Open up our [issue tracker](https://github.com/KnowTheCode/UpDevTools/issues). Then submit a new issue and mark it with a `bug` label. We use the labels to identify the different types of tasks, including buggies.
2121

2222
### Feature Requests
2323

2424
Have an idea for a new feature or toolset? Awesome. Your fellow developers will love you.
2525

26-
To create a feature request, just open an issue on our [issue tracker](https://gitlab.com/uptechlabs/updevtools/issues). When creating the issue, make sure that you mark the label as `feature request`. We use the labels to identify the different types of tasks, as our issue tracker is comprised of issues and tasks.
26+
To create a feature request, just open an issue on our [issue tracker](https://github.com/KnowTheCode/UpDevTools/issues). When creating the issue, make sure that you mark the label as `feature request`. We use the labels to identify the different types of tasks, as our issue tracker is comprised of issues and tasks.
2727

28-
### Merge - Pull Requests
28+
### Pull Requests
2929

30-
If you are familiar with pull requests from GitHub, then you're ready to start with the GitLab's [Merge Requests](https://gitlab.com/uptechlabs/updevtools/merge_requests).
30+
Open a [Pull Request](https://github.com/KnowTheCode/UpDevTools/pulls) when you want to work on a feature or issue.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ See the [enhancement requests](https://github.com/KnowTheCode/UpDevTools/issues?
4141

4242
## Contributions
4343

44-
See [Contributing](https://gitlab.com/uptechlabs/UpDevTools/CONTRIBUTING.md) for details.
44+
See [Contributing](https://github.com/KnowTheCode/UpDevTools/CONTRIBUTING.md) for details.

bootstrap.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
/**
33
* UpDevTools WordPress Plugin
44
*
5-
* @package UpTechLabs\UpDevTools
5+
* @package KnowTheCode\UpDevTools
66
* @author hellofromTonya
77
* @license GPL-2.0+
88
*
99
* @wordpress-plugin
1010
* Plugin Name: UpDevTools WordPress Plugin
11-
* Plugin URI: https://gitlab.com/uptechlabs/updevtools
11+
* Plugin URI: https://github.com/KnowTheCode/UpDevTools
1212
* Description: An integrated suite of development tools for your WordPress development environment, all wrapped up in one handy dandy plugin. You get Kint, Whoops, Mockery, PHPUnit, Carbon, and Monolog. Want more? Come contribute.
1313
* Version: 1.0.0
1414
* Author: hellofromTonya
15-
* Author URI: https://UpTechLabs.io
15+
* Author URI: https://KnowTheCode.io
1616
* Text Domain: updevtools
1717
* License: GPL-2.0+
1818
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1919
*/
2020

21-
namespace UpTechLabs\UpDevTools;
21+
namespace KnowTheCode\UpDevTools;
2222

2323
if ( ! defined( 'ABSPATH' ) ) {
2424
exit( 'Cheatin’ uh?' );

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name" : "uptechlabs/updevtools",
2+
"name" : "knowthecode/updevtools",
33
"description" : "UpDevTools - A Suite of Developer Tools for WordPress development.",
44
"type" : "wordpress-plugin",
55
"keywords" : ["wordpress", "wp", "plugin"],
6-
"homepage" : "https://gitlab.com/uptechlabs/UpDevTools",
6+
"homepage" : "https://github.com/KnowTheCode/UpDevTools",
77
"license" : "GPL-2.0+",
88
"require": {
99
"php" : ">=5.4.0",

src/support/whoops-loader.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
/**
33
* Load up Whoops
44
*
5-
* @package UpTechLabs\UpDevTools\Support
5+
* @package KnowTheCode\UpDevTools\Support
66
* @since 1.0.0
77
* @author hellofromTonya
8-
* @link https://uptechlabs.io
8+
* @link https://KnowTheCode.io
99
* @license GPL-2.0+
1010
*/
11-
namespace UpTechLabs\UpDevTools\Support;
11+
namespace KnowTheCode\UpDevTools\Support;
1212

1313
use Whoops\Handler\PrettyPageHandler;
1414
use Whoops\Run;

0 commit comments

Comments
 (0)