Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ public function isEnabled()
return false;
}

if (!class_exists('Symfony\Component\Process\Process')) {
return false;
}

return parent::isEnabled();
}

Expand Down
3 changes: 2 additions & 1 deletion src/Symfony/Bundle/FrameworkBundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"symfony/finder": "For using the translation loader and cache warmer",
"symfony/form": "For using forms",
"symfony/validator": "For using validation",
"symfony/serializer": "For using the serializer service"
"symfony/serializer": "For using the serializer service",
"symfony/process": "For using the server:run command"
},
"autoload": {
"psr-0": { "Symfony\\Bundle\\FrameworkBundle\\": "" },
Expand Down