WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
vendor
/
spip-league
/
composer-installer
/
src
/
Command
/
Name
Action
..
AbstractSpipCommand.php
Edit
AbstractSwitchCommand.php
Edit
LocalCommand.php
Edit
ModeDevCommand.php
Edit
SwitchBackCommand.php
Edit
SwitchForwardCommand.php
Edit
Editing: AbstractSpipCommand.php
<?php namespace SpipLeague\Composer\Command; use Composer\Command\BaseCommand; abstract class AbstractSpipCommand extends BaseCommand { protected function getRootDir(): string { $composer = $this->requireComposer(); $vendorDir = $composer->getConfig() ->get('vendor-dir'); return \realpath($vendorDir . '/..') ?: ''; } }