Beispiel #1
0
 public static function create(RootPackage $root, JsonObject $packageConfig) : self
 {
     if (null === ($packageName = $packageConfig->get('name'))) {
         throw new \InvalidArgumentException('Package data must include package name');
     }
     $dirPath = $root->getVendorPath(str_replace('/', DIRECTORY_SEPARATOR, $packageConfig->get('name')));
     return new static($root, $dirPath, $packageConfig);
 }