Skip to content

Commit

Permalink
update some for readme
Browse files Browse the repository at this point in the history
Signed-off-by: inhere <in.798@qq.com>
  • Loading branch information
inhere committed Aug 5, 2021
1 parent 0eaa746 commit 0b94207
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
1 change: 1 addition & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ jobs:
php bin/kite -V
php bin/kite -h
php bin/kite git info
php bin/kite jump list
2 changes: 1 addition & 1 deletion README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/inhere/kite)](https://github.com/inhere/kite)
[![Actions Status](https://github.com/inhere/kite/workflows/Unit-Tests/badge.svg)](https://github.com/inhere/kite/actions)

My person CLI tool package.
Kite is a tool for help development

> Github https://github.com/inhere/kite
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,10 @@
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/inhere/kite)](https://github.com/inhere/kite)
[![Actions Status](https://github.com/inhere/kite/workflows/Unit-Tests/badge.svg)](https://github.com/inhere/kite/actions)

PHP编写的个人CLI工具包,方便本地开发和使用的一些工具。
PHP编写的CLI工具应用,方便本地开发和使用的一些工具。

> [kite](https://github.com/inhere/kite) 是基于 [inhere/php-console](https://github.com/inhere/php-console) 命令行包编写的CLI应用
主要封装常用操作命令:

- `git`
- `gitlab`
- `github`
- `php`
- `env`

## [English](README.md)

## 安装
Expand Down
4 changes: 4 additions & 0 deletions app/Console/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@

// internal group
$app->addController(PharController::class);

$app->addAliases('self:update', [
'selfupdate', 'self-update', 'updateself', 'update-self', 'upself', 'selfup'
]);
6 changes: 1 addition & 5 deletions bin/kite
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,11 @@ $app = new CliApplication([
'version' => '1.0.5',
'publishAt' => '2020.05.24',
'updateAt' => date('Y.m.d'),
'description' => 'Kite is an help commands tool for development',
'description' => 'Kite is a tool for help development',
]);

// register routes
require dirname(__DIR__) . '/app/Console/routes.php';

$app->addAliases('self:update', [
'selfupdate', 'self-update', 'updateself', 'update-self', 'upself', 'selfup'
]);

// start application
$app->run();

0 comments on commit 0b94207

Please sign in to comment.