예제 #1
0
 /**
  * Initialize the Component directory, as well as the vendor directory.
  */
 protected function initializeVendorDir()
 {
     $this->componentDir = $this->getComponentDir();
     $this->filesystem->ensureDirectoryExists($this->componentDir);
     parent::initializeVendorDir();
 }
예제 #2
0
 /**
  * Initialize the Component directory, as well as the vendor directory.
  */
 protected function initializeVendorDir()
 {
     $this->filesystem->ensureDirectoryExists($this->getAssetsDir());
     parent::initializeVendorDir();
 }
 /**
  * {@inheritDoc}
  */
 protected function initializeVendorDir()
 {
     parent::initializeVendorDir();
     $this->dumpSharedAutoload();
 }
 /**
  * initializeVendorDir
  *
  * @return void
  */
 protected function initializeVendorDir()
 {
     parent::initializeVendorDir();
     $default_public_path = $this->getVendorDir() . DIRECTORY_SEPARATOR . 'mkungla' . DIRECTORY_SEPARATOR . 'aframe-php' . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR . 'aframe';
     $this->public_root = $this->composer->getConfig()->get('aframe-dir') ?? $default_public_path;
     $this->filesystem->ensureDirectoryExists($this->public_root);
     $this->public_core_dir = $this->public_root . DIRECTORY_SEPARATOR . 'core';
     $this->filesystem->ensureDirectoryExists($this->public_core_dir);
 }