Skip to content

Commit

Permalink
Merge pull request #127 from SimonFrings/sponsor
Browse files Browse the repository at this point in the history
Add support / sponsorship info
  • Loading branch information
clue authored Mar 4, 2022
2 parents 154d5d1 + 491ace0 commit cfe0174
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: clue
custom: https://clue.engineering/support
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@

Framework X – the simple and fast micro framework for building reactive web applications that run anywhere.

* [Support us](#support-us)
* [Quickstart](#quickstart)
* [Documentation](#documentation)
* [Contribute](#contribute)
* [Tests](#tests)
* [License](#license)

## Support us

We invest a lot of time developing, maintaining and updating our awesome
open-source projects. You can help us sustain this high-quality of our work by
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
for details.

Let's take these projects to the next level together! 🚀

## Quickstart

Start by creating an empty project directory.
Expand Down
2 changes: 1 addition & 1 deletion tests/FilesystemHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function testInvokeWithValidPathToDirectoryWillReturnResponseWithDirector
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals(200, $response->getStatusCode());
$this->assertEquals('text/html; charset=utf-8', $response->getHeaderLine('Content-Type'));
$this->assertEquals("<strong>.github/</strong>\n<ul>\n <li><a href=\"../\">../</a></li>\n <li><a href=\"workflows/\">workflows/</a></li>\n</ul>\n", (string) $response->getBody());
$this->assertEquals("<strong>.github/</strong>\n<ul>\n <li><a href=\"../\">../</a></li>\n <li><a href=\"FUNDING.yml\">FUNDING.yml</a></li>\n <li><a href=\"workflows/\">workflows/</a></li>\n</ul>\n", (string) $response->getBody());
}

public function testInvokeWithValidPathToDirectoryButWithoutTrailingSlashWillReturnRedirectToPathWithSlash()
Expand Down

0 comments on commit cfe0174

Please sign in to comment.