From a09fc0ca213c47a0dbed3194ec7c4585cde662f4 Mon Sep 17 00:00:00 2001 From: Koen Caerels Date: Wed, 17 Jan 2024 14:28:46 +0100 Subject: [PATCH] Updated readme file. --- README.md | 18 ++++++++++++++++-- .../DatabaseModelFactory.php | 2 +- .../DatabaseTestCase.php | 2 +- .../Security/BasePermissionServiceTest.php | 4 ++-- 4 files changed, 20 insertions(+), 6 deletions(-) rename tests/{integration => Feature}/DatabaseModelFactory.php (83%) rename tests/{integration => Feature}/DatabaseTestCase.php (97%) rename tests/{integration/application => Feature/YoshiKan}/Application/Security/BasePermissionServiceTest.php (75%) diff --git a/README.md b/README.md index 1d9d840..16d5aaa 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Yoshi-Kan Website + Ledenbeheer --- -

+

GitHub license

@@ -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 diff --git a/tests/integration/DatabaseModelFactory.php b/tests/Feature/DatabaseModelFactory.php similarity index 83% rename from tests/integration/DatabaseModelFactory.php rename to tests/Feature/DatabaseModelFactory.php index 7cb3d7a..00155a9 100644 --- a/tests/integration/DatabaseModelFactory.php +++ b/tests/Feature/DatabaseModelFactory.php @@ -1,6 +1,6 @@