Skip to content

Instantly share code, notes, and snippets.

@bcremer
Created July 7, 2015 07:54
Show Gist options
  • Save bcremer/be55aca64e5acf061851 to your computer and use it in GitHub Desktop.
Save bcremer/be55aca64e5acf061851 to your computer and use it in GitHub Desktop.
Shopware Standalone
<?php
require $PATH_TO_SHOPWARE . '/autoload.php';
$environment = getenv('SHOPWARE_ENV') ?: getenv('REDIRECT_SHOPWARE_ENV') ?: 'production';
$kernel = new Shopware\Kernel($environment, $environment !== 'production');
$kernel->boot();
$container = $kernel->getContainer();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment