Skip to content

Commit dab7ab7

Browse files
authored
Merge pull request #1361 from hydephp/split-out-monorepo-composer-file
Change root monorepo Composer name to `hyde/monorepo`
2 parents 2aed568 + 16ff613 commit dab7ab7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This serves two purposes:
1414
- Added `prose-img:inline` to bundled TailwindCSS classes in https://github.com/hydephp/develop/pull/1359
1515

1616
### Changed
17-
- for changes in existing functionality.
17+
- Internal: Decoupled the monorepo `composer.json` settings in https://github.com/hydephp/develop/pull/1361
1818

1919
### Deprecated
2020
- for soon-to-be removed features.

composer.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "hyde/hyde",
3-
"description": "Static Site Generator to rapidly create Blogs, Documentation, and more, using Markdown and Blade.",
4-
"keywords": ["framework", "hyde", "hyde framework"],
2+
"name": "hyde/monorepo",
3+
"description": "The HydePHP source code monorepo.",
54
"homepage": "https://hydephp.com",
65
"type": "project",
76
"license": "MIT",
87
"support": {
9-
"issues": "https://github.com/hydephp/hyde/issues",
10-
"source": "https://github.com/hydephp/hyde"
8+
"issues": "https://github.com/hydephp/develop/issues",
9+
"source": "https://github.com/hydephp/develop"
1110
},
1211
"authors": [
1312
{

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/framework/src/Console/Commands/DebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function handle(): int
3939

4040
$this->newLine();
4141
$this->comment('Git Version: '.(string) app('git.version'));
42-
$this->comment('Hyde Version: '.(InstalledVersions::getPrettyVersion('hyde/hyde') ?: 'unreleased'));
42+
$this->comment('Hyde Version: '.((InstalledVersions::isInstalled('hyde/hyde') ? InstalledVersions::getPrettyVersion('hyde/hyde') : null) ?: 'unreleased'));
4343
$this->comment('Framework Version: '.(InstalledVersions::getPrettyVersion('hyde/framework') ?: 'unreleased'));
4444

4545
$this->newLine();

0 commit comments

Comments
 (0)