NEXUS (post-application) (repository name: nhance)
Go to file
2024-04-11 10:42:05 +05:30
app CHANGES-in-employeeUpload-api-fixed-error:GWM 2024-04-11 10:42:05 +05:30
public FEAT_EMPLOYEE_MODULE_EMP_UPLOAD_FILE_LIST_FEATCH_EMP_DATA_AND_UPLOAD_DOWNLOAD_VIEW_EXCEL_DATA : RV 2024-04-10 14:06:14 +05:30
system FILES_CI4_SYSTEM_ALL_FILES_PUSH : RV 2024-02-03 16:09:28 +05:30
tests FEAT_ADDON_POLICY_POLICY_LIST_FIX_DATE_FORMATE_CHANGE_SESSION_TIMEOUT_FEAT_INSURER_CATAGORY : RV 2024-04-08 18:05:07 +05:30
writable FEAT_IMPORT_EXPORT : RV 2024-03-14 15:25:04 +05:30
.cpanel.yml CHANGE_YML_PATH5 2024-03-29 18:33:26 +05:30
.env.sample - FEAT_CLIENTMODULE FEAT_DEPOSITSUMMARY_CONTD 2024-03-02 13:56:29 +05:30
.gitignore 'FEAT_EMP_ONBOARD_COMPLETED' 2024-03-26 15:10:11 +05:30
.htaccess FILES_ADDED_FULL_BASIC_SETUP 2024-02-02 17:20:43 +05:30
bitbucket-pipelines.yml CHANGE_CICD_SCRIPT2 2024-03-30 12:39:22 +00:00
composer.json CHANGE_GMC_TERMS_FAMILY_FLOATERS : AADHAVAN 2024-03-25 17:22:46 +05:30
icon-192x192.png FILES_MINTON_ASSETS_FILESPUSH : RV 2024-02-07 11:01:23 +05:30
icon-512x512.png FILES_MINTON_ASSETS_FILESPUSH : RV 2024-02-07 11:01:23 +05:30
LICENSE FILES_ADDED_FULL_BASIC_SETUP 2024-02-02 17:20:43 +05:30
manifest.json FEAT_CREATE_POLICY_GRID : RV 2024-02-23 17:17:04 +05:30
package-lock.json POLICYGMCTERMS : AADHAVAN 2024-02-29 12:05:44 +05:30
package.json POLICYGMCTERMS : AADHAVAN 2024-02-29 12:05:44 +05:30
Papirus-Team-Papirus-Apps-Fusion-icon.512.png FILES_MINTON_ASSETS_FILESPUSH : RV 2024-02-07 11:01:23 +05:30
phpunit.xml.dist FILES_ADDED_FULL_BASIC_SETUP 2024-02-02 17:20:43 +05:30
preload.php FILES_ADDED_FULL_BASIC_SETUP 2024-02-02 17:20:43 +05:30
README.md FILES_CI4_SYSTEM_ALL_FILES_PUSH : RV 2024-02-03 16:09:28 +05:30
service-worker.js FILES_MINTON_ASSETS_FILESPUSH : RV 2024-02-07 11:01:23 +05:30
spark FILES_CI4_SYSTEM_ALL_FILES_PUSH : RV 2024-02-03 16:09:28 +05:30

CodeIgniter 4 Framework

What is CodeIgniter?

CodeIgniter is a PHP full-stack web framework that is light, fast, flexible and secure. More information can be found at the official site.

This repository holds the distributable version of the framework. It has been built from the development repository.

More information about the plans for version 4 can be found in CodeIgniter 4 on the forums.

The user guide corresponding to the latest version of the framework can be found here.

Important Change with index.php

index.php is no longer in the root of the project! It has been moved inside the public folder, for better security and separation of components.

This means that you should configure your web server to "point" to your project's public folder, and not to the project root. A better practice would be to configure a virtual host to point there. A poor practice would be to point your web server to the project root and expect to enter public/..., as the rest of your logic and the framework are exposed.

Please read the user guide for a better explanation of how CI4 works!

Repository Management

We use GitHub issues, in our main repository, to track BUGS and to track approved DEVELOPMENT work packages. We use our forum to provide SUPPORT and to discuss FEATURE REQUESTS.

This repository is a "distribution" one, built by our release preparation script. Problems with it can be raised on our forum, or as issues in the main repository.

Contributing

We welcome contributions from the community.

Please read the Contributing to CodeIgniter section in the development repository.

Server Requirements

PHP version 7.4 or higher is required, with the following extensions installed:

Warning

The end of life date for PHP 7.4 was November 28, 2022. If you are still using PHP 7.4, you should upgrade immediately. The end of life date for PHP 8.0 will be November 26, 2023.

Additionally, make sure that the following extensions are enabled in your PHP:

  • json (enabled by default - don't turn it off)
  • mysqlnd if you plan to use MySQL
  • libcurl if you plan to use the HTTP\CURLRequest library