We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4661240 commit fc6b720Copy full SHA for fc6b720
2 files changed
src/Application/BaseApplication.php
@@ -48,10 +48,6 @@ public function after()
48
{
49
if ($this->currentProject) {
50
$project = $this->currentProject;
51
- exec(sprintf(
52
- "cd % && composer dumpautoload -o > /dev/null &",
53
- $project->getRootDir()
54
- ));
55
}
56
57
src/Command/GenerateCommand.php
@@ -10,8 +10,6 @@ public function run(array $arguments = []){
10
$verbose = $this->isVerbose($arguments);
11
$generator = $this->get("Generator\IndexGenerator");
12
$rootDir = getcwd();
13
- // @TODO this should be somehow configured
14
- exec("composer dumpautoload -o");
15
if(array_key_exists("rootDir", $arguments)){
16
$rootDir = $arguments["rootDir"];
17
0 commit comments