getPackage()->getExtra(); $this->config = array_merge( array( 'bin-links' => true, 'target-directory' => 'vendor-bin', ), isset($extra['bamarni-bin']) ? $extra['bamarni-bin'] : array() ); } /** * @return bool */ public function binLinksAreEnabled() { return true === $this->config['bin-links']; } /** * @return string */ public function getTargetDirectory() { return $this->config['target-directory']; } }