A library management system built in LAMP (Linux, Apache, MySQL, PHP).
- Clone the repository.
- Start phpMyAdmin, create your database and run
scheme.sql
which is inschema
directory. - Create
config.php
in theconfig
directory, you can look atsample.config.php
for help. - In the home directory, run
composer install
and thencomposer dump-autoload
.
To make a user admin, do it manually through MySQL via phpMyAdmin.
- Goto the
public
directory and runphp -S locahost:<PORT>
. - Open a web brower and go to
localhost:<PORT>
to see your LMS.