Skip to content

Commit d321bcc

Browse files
committed
new: move to new origin phppkg
1 parent 644d9e9 commit d321bcc

16 files changed

+20
-19
lines changed

.php-cs-fixer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This file is part of Kite.
55
66
@author https://github.com/inhere
7-
@link https://github.com/phpcom-lab/hucron
7+
@link https://github.com/phppkg/hucron
88
@license MIT
99
EOF;
1010

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# HuCron
22

3-
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/phpcom-lab/hucron)](https://github.com/phpcom-lab/hucron)
4-
[![Github Actions Status](https://github.com/phpcom-lab/hucron/workflows/Unit-tests/badge.svg)](https://github.com/phpcom-lab/hucron/actions)
3+
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/phppkg/hucron)](https://github.com/phppkg/hucron)
4+
[![Github Actions Status](https://github.com/phppkg/hucron/workflows/Unit-tests/badge.svg)](https://github.com/phppkg/hucron/actions)
55
[![Php Version](https://img.shields.io/badge/php-%3E7.2.0-brightgreen.svg?maxAge=2592000)](https://packagist.org/packages/toolkit/sys-utils)
66

77
`HuCron` turns human readable strings about time and turns them into valid crontabs.
88

9-
> `phpcom-lab/hucron` is froked from the https://github.com/ajbdev/cronlingo
9+
> `phppkg/hucron` is froked from the https://github.com/ajbdev/cronlingo
1010
1111
## Install
1212

1313
```bash
14-
composer install phpcom-lab/hucron
14+
composer install phppkg/hucron
1515
```
1616

1717
## Usage

bin/test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
2-
"name": "phpcom-lab/hucron",
2+
"name": "phppkg/hucron",
33
"description": "Express crontabs as human readable phrases",
44
"minimum-stability": "stable",
55
"license": "MIT",
6+
"homepage": "https://github.com/phppkg/hucron",
67
"authors": [
78
{
89
"name": "Andy Baird",

src/Cron.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/Field.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/HuCron.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/Keywords.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/ParseException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/Parser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

src/Statement.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

test/CronTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This file is part of Kite.
55
*
66
* @author https://github.com/inhere
7-
* @link https://github.com/phpcom-lab/hucron
7+
* @link https://github.com/phppkg/hucron
88
* @license MIT
99
*/
1010

test/FieldTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of Kite.
66
*
77
* @author https://github.com/inhere
8-
* @link https://github.com/phpcom-lab/hucron
8+
* @link https://github.com/phppkg/hucron
99
* @license MIT
1010
*/
1111

test/HuCronTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This file is part of Kite.
55
*
66
* @author https://github.com/inhere
7-
* @link https://github.com/phpcom-lab/hucron
7+
* @link https://github.com/phppkg/hucron
88
* @license MIT
99
*/
1010

test/ParserTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* This file is part of Kite.
66
*
77
* @author https://github.com/inhere
8-
* @link https://github.com/phpcom-lab/hucron
8+
* @link https://github.com/phppkg/hucron
99
* @license MIT
1010
*/
1111

test/bootstrap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* This file is part of Kite.
44
*
55
* @author https://github.com/inhere
6-
* @link https://github.com/phpcom-lab/hucron
6+
* @link https://github.com/phppkg/hucron
77
* @license MIT
88
*/
99

0 commit comments

Comments
 (0)