Installation
                jQuery-PHP package
                To require the jQuery-PHP package with Composer, you need to create or navigate to your project
                    directory in your terminal or command prompt and then execute the following command:
                
                    
                        shell
                        Shell code
                    
                    php composer.phar require anton-shevchuk/jquery-php
                 
                To require the Composer autoloader in your PHP file, you can add the following line at the top of your PHP script:
                
                    
                        PHP
                        PHP code
                    
                    require __DIR__ . '/vendor/autoload.php';
                 
                To use functions from the jQuery-PHP package after requiring the Composer autoloader, you can
                    call the functions directly in your PHP code. Here's an example:
                
                    
                        PHP
                        PHP code
                    
use function AntonShevchuk\jQuery\jQuery;
use function AntonShevchuk\jQuery\jQueryContainer;
                 
                To create jQuery-like chain calls using the jQuery-PHP package, you can use method chaining.
                    Here's an example of how you can chain method calls together:
                
                    
                        PHP
                        PHP code
                    
// Create a chain of jQuery-like calls
jQuery('#element_id')
    ->html('Hello, world!')
    ->css('color', 'red')
    ->addClass('highlight')
    ->animate(['opacity' => 'show'], 1000)
    ->delay(2000)
    ->fadeOut();
                 
                After chaining all the method calls, you can obtain a JSON response containing all the commands.
                    Here's how you can do it:
                
                    
                        PHP
                        PHP code
                    
// get JSON response
print json_encode(
    jQueryContainer()
);
                 
                JavaScript initialization
                To initialize jQuery and jQuery.php in HTML, you would typically include the jQuery library first,
                    followed by the jQuery.php script. Here's an example:
                
                        
                            HTML
                            HTML code
                        
<script src="path/to/jquery.js"></script>
<script src="path/to/jquery.php.js"></script>
                 
                Replace path/to/...js with the actual path to your jQuery and jQuery.php scripts.
                    Make sure to place jquery.php.js script tag after including jQuery, as jQuery.php
                    depends on jQuery being loaded first.
                Then, make an AJAX call to your PHP file using jQuery and method $.php():
                
                        
                            JS
                            JavaScript code
                        
// AJAX call to your PHP file
$.php('ajax.php', {'action':'demo'});