private function toCamelCase(string $packageName) : string { return str_replace(' ', '', ucwords(str_replace('-', ' ', basename($packageName)))); }