mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-12-02 11:48:08 +08:00
1.0 KiB
1.0 KiB
create new component
Hyperf
officially provides tools to quickly create component packages.
# Create a component package that adapts to the latest version of Hyperf
composer create-project hyperf/component-creator your_component dev-master
# Create a component package that adapts to Hyperf 2.0 version
composer create-project hyperf/component-creator your_component "2.0.*"
Use unpublished component packages in the project
Suppose the project directory is as follows
/opt/project // project directory
/opt/your_component // component package directory
Assuming the component is named your_component/your_component
Modify /opt/project/composer.json
Other irrelevant configurations are omitted below
{
"require": {
"your_component/your_component": "dev-master"
},
"repositories": {
"your_component": {
"type": "path",
"url": "/opt/your_component"
}
}
}
Finally, execute composer update -o
in the directory /opt/project
.