Skip to content

Commit cfe0174

Browse files
authored
Merge pull request #127 from SimonFrings/sponsor
Add support / sponsorship info
2 parents 154d5d1 + 491ace0 commit cfe0174

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: clue
2+
custom: https://clue.engineering/support

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,23 @@
44

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

7+
* [Support us](#support-us)
78
* [Quickstart](#quickstart)
89
* [Documentation](#documentation)
910
* [Contribute](#contribute)
1011
* [Tests](#tests)
1112
* [License](#license)
1213

14+
## Support us
15+
16+
We invest a lot of time developing, maintaining and updating our awesome
17+
open-source projects. You can help us sustain this high-quality of our work by
18+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
19+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
20+
for details.
21+
22+
Let's take these projects to the next level together! 🚀
23+
1324
## Quickstart
1425

1526
Start by creating an empty project directory.

tests/FilesystemHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public function testInvokeWithValidPathToDirectoryWillReturnResponseWithDirector
252252
$this->assertInstanceOf(ResponseInterface::class, $response);
253253
$this->assertEquals(200, $response->getStatusCode());
254254
$this->assertEquals('text/html; charset=utf-8', $response->getHeaderLine('Content-Type'));
255-
$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());
255+
$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());
256256
}
257257

258258
public function testInvokeWithValidPathToDirectoryButWithoutTrailingSlashWillReturnRedirectToPathWithSlash()

0 commit comments

Comments
 (0)