Skip to content

Instantly share code, notes, and snippets.

@lao9s
Created March 3, 2023 08:32
Show Gist options
  • Save lao9s/77fea3d90b592abb79aee0ff21c3071f to your computer and use it in GitHub Desktop.
Save lao9s/77fea3d90b592abb79aee0ff21c3071f to your computer and use it in GitHub Desktop.
- Create new folder - Create composer.json and fill it. - Execute the command: `composer create-project --stability=dev <vendor-name>/<package-name>`
{
"name": "inovector/<project-name>",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/<vendor-name>/<repository-name>"
}
],
"require": {
"<vendor-name>/<package-name>": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment