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 37c17e7 + 4d9cce7 commit 82fa6e5Copy full SHA for 82fa6e5
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
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