Skip to content

Commit

Permalink
chore: Update composer.json and tests
Browse files Browse the repository at this point in the history
The composer.json file was modified to add the missing newline at the end of the file. Additionally, the tests/ComposerReaderTestCase.php file was updated to declare strict types and set error reporting to display all errors.
  • Loading branch information
nadar committed Aug 15, 2024
1 parent 7ae5ca9 commit 8c481e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
}
}
}
4 changes: 4 additions & 0 deletions tests/ComposerReaderTestCase.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<?php

declare(strict_types=1);

namespace Nadar\PhpComposerReader\Tests;

use PHPUnit\Framework\TestCase;

error_reporting(E_ALL);

class ComposerReaderTestCase extends TestCase
{
protected function getValidJson()
Expand Down

0 comments on commit 8c481e5

Please sign in to comment.