-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge downstream UI Kit documentation
- Loading branch information
1 parent
ec26cfa
commit 7dbb4bb
Showing
5 changed files
with
90 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"name": "hyde/hyde", | ||
"description": "Static Site Generator to rapidly create Blogs, Documentation Sites, and more, using Markdown and Blade.", | ||
"keywords": [ | ||
"framework", | ||
"hyde", | ||
"hyde framework", | ||
"hydephp", | ||
"static site generator", | ||
"static site framework", | ||
"ssg" | ||
], | ||
"homepage": "https://hydephp.com", | ||
"type": "project", | ||
"license": "MIT", | ||
"support": { | ||
"issues": "https://github.com/hydephp/hyde/issues", | ||
"source": "https://github.com/hydephp/hyde" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Caen De Silva", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"hyde/framework": "^1.0", | ||
"hyde/ui-kit": "dev-master", | ||
"laravel-zero/framework": "^10.0" | ||
}, | ||
"require-dev": { | ||
"hyde/realtime-compiler": "^3.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Hyde\\Testing\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"post-autoload-dump": [ | ||
"@php -r \"@unlink('./app/storage/framework/cache/packages.php');\"", | ||
"@php hyde package:discover --ansi" | ||
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"optimize-autoloader": true, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true | ||
} | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/hydephp/ui-kit" | ||
} | ||
], | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"bin": [ | ||
"hyde" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters