PHP code example of antiseptikk / dev-kit

1. Go to this page and download the library: Download antiseptikk/dev-kit library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

antiseptikk / dev-kit example snippets


   

   declare(strict_types=1);
   
   use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
   use Symplify\EasyCodingStandard\ValueObject\Option;
   
   return static function (ContainerConfigurator $containerConfigurator): void
   {
       $containerConfigurator->import(__DIR__.'/vendor/antiseptikk/dev-kit/ecs.php');
   
       $parameters = $containerConfigurator->parameters();
       $parameters->set(Option::LINE_ENDING, "\n");
   };