You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i am trying to use the StopwatchTask in phing, it will always say "StopwatchTask requires Stopwatch to be installed".
I did as it is suggested by "http://pear.symfony.com/" using "pear install symfony2/stopwatch". Installation worked fine, but the include in the phing task is wrong. So even after installing stopwatch, it still doesn't work.
it tries to: @include_once 'Symfony/Component/Stopwatch/autoload.php';
but the autoloader is called autoloader.php, so it should do @include_once 'Symfony/Component/Stopwatch/autoloader.php';
Than it works.
BTW. It would be really helpful, if the error message would also tells the user, which stopwatch it wants to have (symfony) and not e.g. the linux package one.
The text was updated successfully, but these errors were encountered:
When i am trying to use the StopwatchTask in phing, it will always say "StopwatchTask requires Stopwatch to be installed".
I did as it is suggested by "http://pear.symfony.com/" using "pear install symfony2/stopwatch". Installation worked fine, but the include in the phing task is wrong. So even after installing stopwatch, it still doesn't work.
it tries to:
@include_once 'Symfony/Component/Stopwatch/autoload.php';
but the autoloader is called autoloader.php, so it should do
@include_once 'Symfony/Component/Stopwatch/autoloader.php';
Than it works.
BTW. It would be really helpful, if the error message would also tells the user, which stopwatch it wants to have (symfony) and not e.g. the linux package one.
The text was updated successfully, but these errors were encountered: