2017 © Pedro Peláez
 

library httpkernel-adapter

image

php-pm/httpkernel-adapter

  • Tuesday, July 31, 2018
  • by MArcJ
  • Repository
  • 20 Watchers
  • 143 Stars
  • 38,923 Installations
  • PHP
  • 4 Dependents
  • 5 Suggesters
  • 67 Forks
  • 9 Open issues
  • 5 Versions
  • 18 % Grown

The README.md

PHP-PM HttpKernel Adapter

HttpKernel adapter for use of Symfony and Laravel frameworks with PHP-PM. See https://github.com/php-pm/php-pm., (*1)

Setup

  1. Install PHP-PM, (*2)

      composer require php-pm/php-pm
  2. Install HttpKernel Adapter, (*3)

      composer require php-pm/httpkernel-adapter
  3. Optionally provide the namespace of your Kernel using the APP_KERNEL_NAMESPACE environment variable. Example: APP_KERNEL_NAMESPACE=Acme\MyProduct\. This will attempt to use the class Acme\MyProduct\Kernel as the fully qualified class name, (*4)

Note: For Symfony, make sure your AppKernel is autoloaded in your composer.json (shouldn't be an issue for projects created using the Standard Edition after November 2015):, (*5)

{
    "autoload": {
        "classmap": ["app/AppKernel.php"]
    }
}

The Versions