-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[php] Update Codeigniter to v 4 (#7686)
* [php] Update Codeigniter to v 4 * Add writable dir * Change display name * Add JIT in php-fpm
- Loading branch information
Showing
114 changed files
with
5,265 additions
and
2,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CI_ENVIRONMENT = development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<IfModule authz_core_module> | ||
Require all denied | ||
</IfModule> | ||
<IfModule !authz_core_module> | ||
Deny from all | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
/** | ||
* The goal of this file is to allow developers a location | ||
* where they can overwrite core procedural functions and | ||
* replace them with their own. This file is loaded during | ||
* the bootstrap process and is called during the framework's | ||
* execution. | ||
* | ||
* This can be looked at as a `master helper` file that is | ||
* loaded early on, and may also contain additional functions | ||
* that you'd like to use throughout your entire application | ||
* | ||
* @see: https://codeigniter4.github.io/CodeIgniter4/ | ||
*/ |
Oops, something went wrong.