Add Rector & various upgrades

This commit is contained in:
2024-02-10 15:07:27 +01:00
parent 0c6e7c19ab
commit f6a94ed08a
14 changed files with 1449 additions and 1126 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Feature;
use Tests\TestCase;
class ReleaseNotesReachabilityTest extends TestCase
{
public function test_release_notes_is_reachable()
{
$response = $this->get('/early-access/release-notes');
$response->assertStatus(200);
}
}