Skip to content

Commit b522fae

Browse files
committed
updated README
1 parent 216cbf1 commit b522fae

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Library/Router.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* @Purpose: Dynamic Routing Manager
88
* @Author : Olorunfemi-Ojo Tomiwa
99
* @Web : https://github.com/Tomiwa-Ot
10-
* @URL : https://github.com/grephq/php-router
11-
* @Wiki : https://github.com/grephq/php-router/wiki
10+
* @URL : https://github.com/Tomiwa-Ot/php-router
11+
* @Wiki : https://github.com/Tomiwa-Ot/php-router/wiki
1212
*/
1313

1414
require_once __DIR__ . '/Config.php';
@@ -68,7 +68,7 @@ public function __call($name, $arguments)
6868
}
6969
if ($key + 1 != count(explode('/', $arguments[0]))) {
7070
$uriRegExp .= '\/';
71-
}
71+
}
7272
}
7373
} else {
7474
if ($key + 1 == count(explode('/', $arguments[0]))) {

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,18 @@ class User extends BaseController
5252
## Installation
5353
Via Git
5454
```bash
55-
git clone https://github.com/grephq/php-router.git
55+
git clone https://github.com/Tomiwa-Ot/php-router.git
5656
```
5757
Via Composer
5858
```bash
5959
composer create-project grephq/php-router
6060
```
6161

6262
## Docs
63-
https://github.com/grephq/php-router/wiki
63+
https://github.com/Tomiwa-Ot/php-router/wiki
6464

6565
## Example
66-
https://github.com/grephq/php-router/wiki/Usage#example
66+
https://github.com/Tomiwa-Ot/php-router/wiki/Usage#example
6767

6868
## License
6969

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grephq/php-router",
3-
"description": "Dynamic routing",
3+
"description": "Dynamic routing framework in php",
44
"type": "project",
55
"license": "MIT",
66
"authors": [
@@ -13,9 +13,9 @@
1313
],
1414
"support": {
1515
"email": "[email protected]",
16-
"wiki": "https://github.com/grephq/php-router/wiki"
16+
"wiki": "https://github.com/Tomiwa-Ot/php-router/wiki"
1717
},
1818
"minimum-stability": "stable",
1919
"require": {},
20-
"version": "1.0.0"
20+
"version": "1.0.1"
2121
}

0 commit comments

Comments
 (0)