Skip to content

Commit

Permalink
Updated readme file.
Browse files Browse the repository at this point in the history
  • Loading branch information
koencaerels committed Jan 17, 2024
1 parent b46a9ef commit a09fc0c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Yoshi-Kan Website + Ledenbeheer

---

<p style="padding-top:9px;">
<p>
<img src="https://img.shields.io/github/license/koencaerels/yoshikan?style=flat" alt="GitHub license">
<img src="https://github.com/koencaerels/yoshikan/actions/workflows/php_build_and_qa_test.yml/badge.svg">
</p>
Expand All @@ -12,7 +12,21 @@ Yoshi-Kan Website + Ledenbeheer

## Requirements

...
* A webserver (Apache, NGINX, ...) with PHP 8.2 or higher.
* [Symfony](https://symfony.com/): PHP 8.2 or higher and these PHP extensions (which are installed and enabled by default in most PHP 8 installations):
Ctype, iconv, PCRE, Session, SimpleXML, and Tokenizer.
* [Composer](https://getcomposer.org/download/), which is used to install PHP packages.
* A database server (MySQL, PostgreSQL, SQLite, ... ) that is compatible with [Doctrine](https://www.doctrine-project.org/).
* Node.js,Yarn & NPM for the frontends build process.

### Third party services

* https://www.resend.com/ for sending emails concerning the two factor authentication
* https://www.brevo.com/ for sending the transactional emails
* https://www.mollie.com/ for the online payment services
* https://www.sentry.io/ for error logging and monitoring

You can configure these services in the `.env` file.

## Getting Started

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Tests\integration;
namespace App\Tests\Feature;

use Doctrine\ORM\EntityManagerInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

declare(strict_types=1);

namespace App\Tests\integration;
namespace App\Tests\Feature;

use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Tools\SchemaTool;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace App\Tests\integration\application\Application\Security;
namespace App\Tests\Feature\YoshiKan\Application\Security;

use App\Tests\integration\DatabaseTestCase;
use App\Tests\Feature\DatabaseTestCase;
use App\YoshiKan\Domain\Model\Member\Member;

class BasePermissionServiceTest extends DatabaseTestCase
Expand Down

0 comments on commit a09fc0c

Please sign in to comment.