quidphp/project

Create a new project using QuidPHP and LemurCMS

5.31.0 2022-07-10 22:33 UTC

This package is auto-updated.

Last update: 2024-04-11 02:54:51 UTC


README

Release License PHP Version Style CI Code Size

About

QuidPHP/Project repository contains the necessary structure to create a new project using QuidPHP and LemurCMS.

License

QuidPHP/Project is available as an open-source software under the MIT license.

Documentation

QuidPHP/Project documentation is available at QuidPHP/Docs.

Installation

QuidPHP/Project can be easily installed with Composer. It is available on Packagist.

$ composer create-project quidphp/project --prefer-dist

Requirement

QuidPHP/Project requires the following:

  • Apache or Nginx server (running on MacOs or Linux environment).
    • Works in Windows environment but there are known issues.
  • PHP 8.1
    • with these extensions:
      • ctype
      • curl
      • date
      • fileinfo
      • gd
      • iconv
      • json
      • mbstring
      • pcre
      • openssl
      • session
      • SimpleXML
      • zip
      • PDO
      • pdo_mysql
    • and these PHP INI directives
      • post_max_size must be at least 1MB
      • post_max_size must be larger than upload_max_filesize
      • memory_limit must be at least 128MB
  • Mysql (>= 8.0) or MariaDB (>= 10.4) database
  • Any modern browser (not Internet Explorer)

Dependency

QuidPHP/Assert has the following dependency:

  • quidphp/site - Quid\Site - Extended platform to build a website using the QuidPHP framework and LemurCMS

All dependencies will be resolved by using the Composer installation process.

Setup

Once the installation is complete, simply follow these steps:

  1. Make sure the storage and public folders are writable by your web server. For storage also make sure all subdirectories are writable.
  2. Configure an Apache Virtual Host or Nginx Server Block in order to have a domain pointing to the public folder document root.
  3. Import db.sql within a new Mysql/MariaDB database.
  4. Duplicate the env-default.php file and rename it to env.php.
  5. Update the scheme hosts within the env.php file. You will need to set a different host (domain or subdomain) for the application and the CMS.
  6. Update the database parameters within the env.php file.
  7. Not required, but you are encouraged to change the namespace of all PHP classes within the src folder. The default namespace is Project.

Booting via HTTP

From your web browser, enter the URL to the public/index.php entry file. The host used will determine if the application or CMS is booted.

QuidPHP CLI routes

Open the project folder in the Command Line. You may now submit a command in the following format:

php quid [path][:envType]
exemple:
php quid /en/my-url
php quid /en/my-url:dev/cms
php quid /:prod/app

LemurCMS credentials

Once you open the CMS within your browser, you will need to login. The default user is:

  • Username: admin
  • Password: changeme123

Once you are logged in, you will be able to change the password for the user and create new users.

Overview

QuidPHP/Project contains 21 files. Here is an overview:

Known issues

  • On Windows, there are some problems related to creating symlinks.
  • On Windows, you will need to add lower_case_table_names = 2 in your database configuration file (my.cnf). The table and column names need to be stored in their natural case.

Testing

QuidPHP testsuite can be run by creating a new QuidPHP/Assert project.