Skip to content

Instantly share code, notes, and snippets.

@jadwigo
Created July 31, 2018 13:37
Show Gist options
  • Select an option

  • Save jadwigo/fe35d95e64b134d98ec75e9f297fbe50 to your computer and use it in GitHub Desktop.

Select an option

Save jadwigo/fe35d95e64b134d98ec75e9f297fbe50 to your computer and use it in GitHub Desktop.
Bolt extension from custom git repository
{
"autoload": {
"psr-4": {
"Bolt\\Composer\\EventListener\\": "../vendor/bolt/bolt/src/Composer/EventListener"
}
},
"config": {
"discard-changes": true,
"preferred-install": "dist"
},
"description": "Bolt extension installation interface",
"extra": {
"bolt-web-path": "../public",
"bolt-root-path": ".."
},
"license": "MIT",
"minimum-stability": "stable",
"name": "bolt/extensions",
"prefer-stable": true,
"provide": {
"bolt/bolt": "3.5.5"
},
"repositories": {
"packagist": false,
"boltauth-addon": {
"type": "git",
"url": "https://github.com/jadwigo/Auth.git"
},
"bolt": {
"type": "composer",
"url": "https://market.bolt.cm/satis/"
}
},
"scripts": {
"post-autoload-dump": "Bolt\\Composer\\EventListener\\PackageEventListener::dump",
"post-package-install": "Bolt\\Composer\\EventListener\\PackageEventListener::handle",
"post-package-update": "Bolt\\Composer\\EventListener\\PackageEventListener::handle"
},
"require": {
"boltauth/auth": "^3.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment