Skip to content

Instantly share code, notes, and snippets.

@bymaximus
Forked from mfurlend/composer.json
Created May 19, 2019 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bymaximus/470d68deab08af73a8ef472b573b97df to your computer and use it in GitHub Desktop.
Save bymaximus/470d68deab08af73a8ef472b573b97df to your computer and use it in GitHub Desktop.
composer require git repository
{
"name": "my_vendor_name/my_package",
"description": "My Package Description",
"license": "GPL-3.0",
"autoload": {
"classmap": [ // search these directories for classes
"lib/"
]
},
"repositories": {
"php-console-color": { // pseudonym of git repo
"type": "package",
"package": {
"name": "coryjthompson/php-console-color", // name of git repo
"version": "1.0",
"source": {
"url": "https://github.com/coryjthompson/php-console-color.git", // url to repo
"type": "git", // vcs or git
"reference": "origin/master"
}
}
}
},
"require": {
"coryjthompson/php-console-color":"1.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment