Skip to content

Instantly share code, notes, and snippets.

@jmather
Last active December 26, 2015 01:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmather/7072295 to your computer and use it in GitHub Desktop.
Save jmather/7072295 to your computer and use it in GitHub Desktop.
Example composer.json with satis repo and packagist disabled.
{
"repositories": [
{
"type": "composer",
"url": "https://s3.amazonaws.com/my_satis_repo/"
},
{
"packagist": false
}
],
"require": {
"phpunit/phpunit":"3.7.28",
},
"config": {
"bin-dir": "bin/",
"notify-on-install": false
},
"autoload": {
"psr-0": { "": "src/" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment