What to expect of us?

  

Fair pricing

No hidden charges.

Based upon the information you provide, You will be given an upfront estimate for your project and we'll stick to it. 

Install Update Manage Discover Database Warnings Install Languages Update Sites Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/systemw/public_html/libraries/nextend2/nextend/library/libraries/assets/less/lessc.

Really simple to fix the issue, however keep in mind that you should fork and commit your changes for each library you are using in their repositories to help others as well.

Let's say you have something like this in your code:

$str = "test";
echo($str{0});
since PHP 7.4 curly braces method to get individual characters inside a string has been deprecated, so change the above syntax into this:

$str = "test";
echo($str[0]);