rizal/todo

There is no license information available for the latest version (v2.0.0) of this package.

Buat aplikasi todolist menggunakan konsep oop, database mysql, composer dan unit testing

v2.0.0 2023-01-27 18:33 UTC

This package is auto-updated.

Last update: 2025-06-28 00:28:59 UTC


README

About This repository is an application that implements OOP Principles, specifically a Todolist. which I have been learning and implement on for 2 weeks.

A brief description of your project, what it is used for.

Getting started

Installing Project Via Composer

composer create-project rizal/todo

Installing Project Via Github

git clone https://github.com/RizalFIrdaus/TodolistPHPMysql-Composer-PhpUnit.git
composer update
composer dump-autoload

Connect Database

Modified Config file database in App/Config/Database.

 $host = "localhost";
 $port = 3306;
 $dbname = "your dbname";
 $username = "your username";
 $password = "your password";

Test Connection

If your database successfull connected, log will feedback "Berhasil Terhubung"

 cd (Your Director)
 vendor/bin/phpunit ./src/Tests/DatabaseTest.php

How to running

cd (Your Directory)/src
php .\App.php

Built With

PHP Object Oriented Programming Principles