You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,7 +15,7 @@ The primary goal of this project is to create a streamlined and efficient develo
15
15
# Services
16
16
17
17
* Easy setup with [docker compose](https://docs.docker.com/compose/) and [Dockerfile](https://docs.docker.com/engine/reference/builder/) under usage from [Docker](https://www.docker.com)
18
-
* Uses [PHP 8.3.8](https://www.php.net) for better performance, lower CPU and memory usage
18
+
* Uses [PHP 8.3.10](https://www.php.net) for better performance, lower CPU and memory usage
19
19
* And [composer the dependency manager for PHP](https://getcomposer.org) to start easy your project
20
20
* Built on the lightweight [nginx 1.27.1](https://nginx.org) webserver
21
21
* Debugging with [Xdebug 3.3.2](https://xdebug.org)
@@ -48,27 +48,7 @@ The primary goal of this project is to create a streamlined and efficient develo
48
48
49
49
## Example PHPUnit Test
50
50
51
-
An example PHPUnit test is included in the `tests` directory:
52
-
53
-
```php
54
-
// tests/ExampleTest.php
55
-
56
-
<?php
57
-
58
-
declare(strict_types=1);
59
-
60
-
use PHPUnit\Framework\TestCase;
61
-
use App\Example;
62
-
63
-
class ExampleTest extends TestCase
64
-
{
65
-
public function testExample()
66
-
{
67
-
$example = new Example();
68
-
$this->assertTrue($example->doSomething());
69
-
}
70
-
}
71
-
```
51
+
An example PHPUnit test is included in the `tests` directory.
72
52
73
53
See also:
74
54
[Blog-Post: Dockerize your PHP application with Nginx and PHP8 FPM](https://marc.it/dockerize-application-with-nginx-and-php8/)
0 commit comments