- PHP
- Composer
- PHP Google API
- PHP enum
- MariaDB or MySQL
- TypeScript compiler
- jQuery
- jQuery ui autocomplete module
- Bootstrap
- Bootstrap 5 stylesheets
- Bootstrap JS plugin
- Pixabay's tag editor jQuery plugin
- Accursoft's caret jQuery plugin
- DateRangePicker
config.php
containing credentials for
database- and Google login handling is needed in
the project root.
Example:
<?php
session_start();
// Google OAuth credentials
require_once "vendor/autoload.php";
$gClient = new Google_Client();
$gClient->setClientId("your-client-id-here");
$gClient->setClientSecret("your-client-secret-here");
$gClient->setApplicationName("your-application-name-here");
$gClient->setRedirectUri("http://localhost/auth.php");
$gClient->addScope(["https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"]);
// MariaDB/MySQL credentials
const DB_SERVER = "localhost";
const DB_USERNAME = "db-username";
const DB_PASSWORD = "db-password";
const DB_NAME = "db-name";