Skip to content

Commit 4497956

Browse files
committed
Update documentation URLs to docs.hdj.me
Replaced all references to hyperf.fans with docs.hdj.me in README files, composer.json support sections, scripts, and configuration files to reflect the new official documentation site.
1 parent 58d652a commit 4497956

File tree

55 files changed

+65
-65
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+65
-65
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,14 @@ php bin/hyperf.php vendor:publish friendsofhyperf/[component-name]
162162

163163
## 📚 Documentation
164164

165-
For detailed documentation, visit the [official documentation website](https://hyperf.fans/).
165+
For detailed documentation, visit the [official documentation website](https://docs.hdj.me/).
166166

167167
### Documentation by Language
168168

169-
- [简体中文 (Simplified Chinese)](https://hyperf.fans/zh-cn/)
170-
- [繁體中文 (Traditional Chinese)](https://hyperf.fans/zh-tw/)
171-
- [香港繁體 (Hong Kong Traditional)](https://hyperf.fans/zh-hk/)
172-
- [English](https://hyperf.fans/en/)
169+
- [简体中文 (Simplified Chinese)](https://docs.hdj.me/zh-cn/)
170+
- [繁體中文 (Traditional Chinese)](https://docs.hdj.me/zh-tw/)
171+
- [香港繁體 (Hong Kong Traditional)](https://docs.hdj.me/zh-hk/)
172+
- [English](https://docs.hdj.me/en/)
173173

174174
## 🔨 Development
175175

@@ -224,7 +224,7 @@ We welcome contributions from the community! Please read our [Contributing Guide
224224

225225
## 🌟 Support & Community
226226

227-
- 📖 **Documentation**: [hyperf.fans](https://hyperf.fans/)
227+
- 📖 **Documentation**: [docs.hdj.me](https://docs.hdj.me/)
228228
- 💬 **Issues**: [GitHub Issues](https://github.com/friendsofhyperf/components/issues)
229229
- 🐦 **Twitter**: [@huangdijia](https://twitter.com/huangdijia)
230230
- 📧 **Email**: [[email protected]](mailto:[email protected])

README_CN.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,14 @@ php bin/hyperf.php vendor:publish friendsofhyperf/[组件名称]
162162

163163
## 📚 文档
164164

165-
详细文档请访问 [官方文档网站](https://hyperf.fans/)
165+
详细文档请访问 [官方文档网站](https://docs.hdj.me/)
166166

167167
### 多语言文档
168168

169-
- [简体中文](https://hyperf.fans/zh-cn/)
170-
- [繁體中文](https://hyperf.fans/zh-tw/)
171-
- [香港繁體](https://hyperf.fans/zh-hk/)
172-
- [English](https://hyperf.fans/en/)
169+
- [简体中文](https://docs.hdj.me/zh-cn/)
170+
- [繁體中文](https://docs.hdj.me/zh-tw/)
171+
- [香港繁體](https://docs.hdj.me/zh-hk/)
172+
- [English](https://docs.hdj.me/en/)
173173

174174
## 🔨 开发
175175

@@ -224,7 +224,7 @@ composer analyse
224224

225225
## 🌟 支持与社区
226226

227-
- 📖 **文档**[hyperf.fans](https://hyperf.fans/)
227+
- 📖 **文档**[docs.hdj.me](https://docs.hdj.me/)
228228
- 💬 **问题反馈**[GitHub Issues](https://github.com/friendsofhyperf/components/issues)
229229
- 🐦 **Twitter**[@huangdijia](https://twitter.com/huangdijia)
230230
- 📧 **邮箱**[[email protected]](mailto:[email protected])

bin/pending-composer-json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ foreach ($files as $file) {
7777
}
7878
$composerJson->support->issues = 'https://github.com/friendsofhyperf/components/issues';
7979
$composerJson->support->source = 'https://github.com/friendsofhyperf/components';
80-
$composerJson->support->docs = 'https://hyperf.fans';
80+
$composerJson->support->docs = 'https://docs.hdj.me';
8181
$composerJson->support->{'pull-request'} = 'https://github.com/friendsofhyperf/components/pulls';
8282

8383
// Extra

context7.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"settings": {
33
"title": "Friends of Hyperf Components",
44
"project": "/friendsofhyperf/components",
5-
"description": "🚀 The most popular components for Hyperf. A collection of 40+ reusable packages including cache, encryption, HTTP client, notification, OAuth2 server, and more. Built for Hyperf 3.1+ with PHP 8.1+. https://hyperf.fans/",
5+
"description": "🚀 The most popular components for Hyperf. A collection of 40+ reusable packages including cache, encryption, HTTP client, notification, OAuth2 server, and more. Built for Hyperf 3.1+ with PHP 8.1+. https://docs.hdj.me/",
66
"docsRepoUrl": "https://github.com/friendsofhyperf/components",
77
"folders": [
88
"src",

docs/.vitepress/config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default defineConfig({
105105
}
106106
},
107107
sitemap: {
108-
hostname: 'https://hyperf.fans'
108+
hostname: 'https://docs.hdj.me'
109109
},
110110
themeConfig: {
111111
outline: {

src/amqp-job/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"support": {
1717
"issues": "https://github.com/friendsofhyperf/components/issues",
1818
"source": "https://github.com/friendsofhyperf/components",
19-
"docs": "https://hyperf.fans",
19+
"docs": "https://docs.hdj.me",
2020
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
2121
},
2222
"require": {

src/cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"support": {
1717
"issues": "https://github.com/friendsofhyperf/components/issues",
1818
"source": "https://github.com/friendsofhyperf/components",
19-
"docs": "https://hyperf.fans",
19+
"docs": "https://docs.hdj.me",
2020
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
2121
},
2222
"require": {

src/co-phpunit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
188188
## Support
189189

190190
- Issues: [GitHub Issues](https://github.com/friendsofhyperf/components/issues)
191-
- Documentation: [Hyperf Fans](https://hyperf.fans)
191+
- Documentation: [Hyperf Fans](https://docs.hdj.me)
192192
- Pull Requests: [GitHub Pull Requests](https://github.com/friendsofhyperf/components/pulls)
193193

194194
## License

src/co-phpunit/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"support": {
1818
"issues": "https://github.com/friendsofhyperf/components/issues",
1919
"source": "https://github.com/friendsofhyperf/components",
20-
"docs": "https://hyperf.fans",
20+
"docs": "https://docs.hdj.me",
2121
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
2222
},
2323
"require": {

src/command-benchmark/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"support": {
1717
"issues": "https://github.com/friendsofhyperf/components/issues",
1818
"source": "https://github.com/friendsofhyperf/components",
19-
"docs": "https://hyperf.fans",
19+
"docs": "https://docs.hdj.me",
2020
"pull-request": "https://github.com/friendsofhyperf/components/pulls"
2121
},
2222
"require": {

0 commit comments

Comments
 (0)