We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cef1ef + e5dda01 commit 52915edCopy full SHA for 52915ed
src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php
@@ -34,6 +34,10 @@ public function isEnabled()
34
return false;
35
}
36
37
+ if (!class_exists('Symfony\Component\Process\Process')) {
38
+ return false;
39
+ }
40
+
41
return parent::isEnabled();
42
43
src/Symfony/Bundle/FrameworkBundle/composer.json
@@ -54,6 +54,7 @@
54
"symfony/serializer": "For using the serializer service",
55
"symfony/validator": "For using validation",
56
"symfony/yaml": "For using the debug:config and lint:yaml commands",
57
+ "symfony/process": "For using the server:run command",
58
"doctrine/cache": "For using alternative cache drivers"
59
},
60
"autoload": {
0 commit comments