Skip to content

Commit

Permalink
Merge pull request nuvoleweb#16 from yenyasinn/EWPP-1846
Browse files Browse the repository at this point in the history
Issue nuvoleweb#15: PHP 8 support.
  • Loading branch information
ademarco authored Jan 12, 2022
2 parents 81e9983 + a50b54e commit ca3a724
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
"name": "nuvoleweb/robo-config",
"description": "CI/developer-friendly configuration processor for Robo.",
"type": "robo-tasks",
"license": "GPL-2.0",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Antonio De Marco",
"email": "[email protected]"
}
],
"require": {
"consolidation/robo": "^2.1"
"consolidation/robo": "^3.0"
},
"require-dev": {
"drupal/coder": "^8",
"phpunit/phpunit": "^7",
"phpro/grumphp": "0.14.0"
"phpunit/phpunit": "^9.4",
"phpro/grumphp": "^1.2"
},
"autoload": {
"psr-4": {
"NuvoleWeb\\Robo\\Task\\Config\\": "src",
"NuvoleWeb\\Robo\\Tests\\": "tests"
"NuvoleWeb\\Robo\\Task\\Config\\": "./src/",
"NuvoleWeb\\Robo\\Tests\\": "./tests/"
}
}
}
2 changes: 1 addition & 1 deletion grumphp.yml.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
parameters:
grumphp:
ascii:
failed: ~
succeeded: ~
Expand Down
3 changes: 1 addition & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap = "vendor/autoload.php">
<testsuites>
<testsuite>
<testsuite name="Robo config">
<directory>tests/</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion tests/TaskTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TaskTest extends TestCase implements ContainerAwareInterface {
/**
* {@inheritdoc}
*/
function setup(): void {
protected function setUp(): void {
$container = Robo::createDefaultContainer(null, new NullOutput());
$this->setContainer($container);
}
Expand Down

0 comments on commit ca3a724

Please sign in to comment.