Skip to content

Commit f2856a3

Browse files
committed
refactor to keep
1 parent 1388609 commit f2856a3

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Keep
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/stechstudio/laravel-keep.svg?style=flat-square)](https://packagist.org/packages/stechstudio/laravel-keep)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/stechstudio/keep.svg?style=flat-square)](https://packagist.org/packages/stechstudio/keep)
44
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
5-
[![Tests](https://img.shields.io/github/actions/workflow/status/stechstudio/laravel-keep/tests.yml?branch=main&style=flat-square)](https://github.com/stechstudio/laravel-keep/actions/workflows/tests.yml)
5+
[![Tests](https://img.shields.io/github/actions/workflow/status/stechstudio/keep/tests.yml?branch=main&style=flat-square)](https://github.com/stechstudio/keep/actions/workflows/tests.yml)
66

77

88
**Keep** is your toolkit for collaborative, secure management of secrets across applications, environments, and teams.
@@ -24,7 +24,7 @@ The package provides a secure, organized way to manage application secrets witho
2424
Install the package via composer:
2525

2626
```bash
27-
composer require stechstudio/laravel-keep
27+
composer require stechstudio/keep
2828
```
2929

3030
This will install a command in your `vendor/bin` directory called `keep`. Run `keep configure` to configure Keep and your first vault.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "stechstudio/laravel-keep",
2+
"name": "stechstudio/keep",
33
"description": "Toolkit for collaborative, secure management of secrets across applications, environments, and teams.",
44
"keywords": [
55
"secrets",

docs/.vitepress/config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ export default defineConfig({
55
description: 'Collaborative, secure management of secrets across applications, environments, and teams.',
66

77
// Base URL for GitHub Pages (repository name)
8-
base: '/laravel-keep/',
8+
base: '/keep/',
99

1010
themeConfig: {
1111
// GitHub repository
1212
socialLinks: [
13-
{ icon: 'github', link: 'https://github.com/stechstudio/laravel-keep' }
13+
{ icon: 'github', link: 'https://github.com/stechstudio/keep' }
1414
],
1515

1616
// Navigation
@@ -94,7 +94,7 @@ export default defineConfig({
9494

9595
// Edit link
9696
editLink: {
97-
pattern: 'https://github.com/stechstudio/laravel-keep/edit/main/docs/:path',
97+
pattern: 'https://github.com/stechstudio/keep/edit/main/docs/:path',
9898
text: 'Edit this page on GitHub'
9999
},
100100

docs/guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Keep can be installed globally as a standalone CLI tool or as a Composer depende
77
Install Keep globally using Composer:
88

99
```bash
10-
composer global require stechstudio/laravel-keep
10+
composer global require stechstudio/keep
1111
```
1212

1313
Make sure your global Composer vendor bin directory is in your `$PATH`:
@@ -23,7 +23,7 @@ Add this line to your shell profile (`.bashrc`, `.zshrc`, etc.) to make it perma
2323
If you prefer to install Keep per project:
2424

2525
```bash
26-
composer require --dev stechstudio/laravel-keep
26+
composer require --dev stechstudio/keep
2727
```
2828

2929
Then run Keep commands using:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ hero:
1111
link: /guide/
1212
- theme: alt
1313
text: View on GitHub
14-
link: https://github.com/stechstudio/laravel-keep
14+
link: https://github.com/stechstudio/keep
1515

1616
features:
1717
- title: Multi-Vault Support

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git+https://github.com/stechstudio/laravel-keep.git"
16+
"url": "git+https://github.com/stechstudio/keep.git"
1717
},
1818
"keywords": [],
1919
"author": "",
2020
"license": "ISC",
2121
"bugs": {
22-
"url": "https://github.com/stechstudio/laravel-keep/issues"
22+
"url": "https://github.com/stechstudio/keep/issues"
2323
},
24-
"homepage": "https://github.com/stechstudio/laravel-keep#readme",
24+
"homepage": "https://github.com/stechstudio/keep#readme",
2525
"devDependencies": {
2626
"vitepress": "^1.6.4"
2727
}

0 commit comments

Comments
 (0)