Skip to content

Commit

Permalink
use >=0.5.2 for specifying Robo dependency (thanks @lussoluca)
Browse files Browse the repository at this point in the history
normally, I would use the caret, but ^0.5.2 means >=0.5.2 <0.6.0.
I simply assume new Robo versions do not break things ;)
  • Loading branch information
boedah committed Nov 27, 2015
1 parent 323ab6a commit a09a99e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Use the trait (according to your used version) in your RoboFile:
```php
class RoboFile extends \Robo\Tasks
{
// if you use ~2.1 for Robo ~0.5.2
// if you use ~2.1 for Robo >=0.5.2
use \Boedah\Robo\Task\Drush\loadTasks;

// if you use ~1.0 for Robo ~0.4
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"require": {
"php": ">=5.4.0",
"codegyre/robo": "~0.5.2"
"codegyre/robo": ">=0.5.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
Expand Down

0 comments on commit a09a99e

Please sign in to comment.