Built on top of Symfony 5
The user interface is built with Bootstrap 4
- PHP 7.2.9 or higher;
- PDO-SQLite PHP extension enabled;
- And the usual Symfony application requirements.
-
Donwload git (see https://git-scm.com/downloads)
-
Install Composer (see http://getcomposer.org/download)
-
Clone the project via Git
$ git clone https://github.com/bechir/courat.git $ cd courat $ composer install
There's no need to configure anything to run the application. If you have installed Symfony, run this command and access the application in your browser at the given URL (https://localhost:8000 by default):
$ cd courat/
$ symfony serve
If you don't have the Symfony binary installed, run php -S localhost:8000 -t public/
to use the built-in PHP web server or configure a web server like Nginx or
Apache to run the application.
Execute this command to run tests:
$ cd courat/
$ ./bin/phpunit
Contributions Are Welcome! Please see how to contribute page for more details.