Skip to content

Commit fc6b720

Browse files
committed
removed composer commands from padawan
1 parent 4661240 commit fc6b720

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

src/Application/BaseApplication.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ public function after()
4848
{
4949
if ($this->currentProject) {
5050
$project = $this->currentProject;
51-
exec(sprintf(
52-
"cd % && composer dumpautoload -o > /dev/null &",
53-
$project->getRootDir()
54-
));
5551
}
5652
}
5753

src/Command/GenerateCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ public function run(array $arguments = []){
1010
$verbose = $this->isVerbose($arguments);
1111
$generator = $this->get("Generator\IndexGenerator");
1212
$rootDir = getcwd();
13-
// @TODO this should be somehow configured
14-
exec("composer dumpautoload -o");
1513
if(array_key_exists("rootDir", $arguments)){
1614
$rootDir = $arguments["rootDir"];
1715
}

0 commit comments

Comments
 (0)