42 changed files with 2050 additions and 2200 deletions
@ -0,0 +1,32 @@
|
||||
# Bootstrap |
||||
app/bootstrap* |
||||
app/SymfonyRequirements.php |
||||
|
||||
# Symfony directories |
||||
vendor/ |
||||
app/logs/ |
||||
app/cache/ |
||||
web/uploads/ |
||||
web/bundles/ |
||||
|
||||
# Configuration files |
||||
app/config/parameters.ini |
||||
|
||||
# Composer related files |
||||
vendor/composer/installed.json |
||||
|
||||
# Assetic-generated .js and .css files |
||||
web/js/ |
||||
web/css/ |
||||
|
||||
# Project's upload directory |
||||
web/upload/ |
||||
|
||||
# Spool directory |
||||
spool/ |
||||
|
||||
# Backup files |
||||
*~ |
||||
|
||||
#NetBeans private files |
||||
/nbproject/private/ |
@ -1,45 +0,0 @@
|
||||
[submodule "vendor/symfony"] |
||||
path = vendor/symfony |
||||
url = http://github.com/symfony/symfony.git |
||||
[submodule "vendor/twig"] |
||||
path = vendor/twig |
||||
url = http://github.com/fabpot/Twig.git |
||||
[submodule "vendor/monolog"] |
||||
path = vendor/monolog |
||||
url = http://github.com/Seldaek/monolog.git |
||||
[submodule "vendor/doctrine-common"] |
||||
path = vendor/doctrine-common |
||||
url = http://github.com/doctrine/common.git |
||||
[submodule "vendor/doctrine-dbal"] |
||||
path = vendor/doctrine-dbal |
||||
url = http://github.com/doctrine/dbal.git |
||||
[submodule "vendor/doctrine"] |
||||
path = vendor/doctrine |
||||
url = http://github.com/doctrine/doctrine2.git |
||||
[submodule "vendor/swiftmailer"] |
||||
path = vendor/swiftmailer |
||||
url = http://github.com/swiftmailer/swiftmailer.git |
||||
[submodule "vendor/assetic"] |
||||
path = vendor/assetic |
||||
url = http://github.com/kriswallsmith/assetic.git |
||||
[submodule "vendor/twig-extensions"] |
||||
path = vendor/twig-extensions |
||||
url = http://github.com/fabpot/Twig-extensions.git |
||||
[submodule "vendor/metadata"] |
||||
path = vendor/metadata |
||||
url = http://github.com/schmittjoh/metadata.git |
||||
[submodule "vendor/bundles/Sensio/Bundle/FrameworkExtraBundle"] |
||||
path = vendor/bundles/Sensio/Bundle/FrameworkExtraBundle |
||||
url = http://github.com/sensio/SensioFrameworkExtraBundle.git |
||||
[submodule "vendor/bundles/JMS/SecurityExtraBundle"] |
||||
path = vendor/bundles/JMS/SecurityExtraBundle |
||||
url = http://github.com/schmittjoh/JMSSecurityExtraBundle.git |
||||
[submodule "vendor/bundles/Sensio/Bundle/DistributionBundle"] |
||||
path = vendor/bundles/Sensio/Bundle/DistributionBundle |
||||
url = http://github.com/sensio/SensioDistributionBundle.git |
||||
[submodule "vendor/bundles/Sensio/Bundle/GeneratorBundle"] |
||||
path = vendor/bundles/Sensio/Bundle/GeneratorBundle |
||||
url = http://github.com/sensio/SensioGeneratorBundle.git |
||||
[submodule "vendor/bundles/Symfony/Bundle/AsseticBundle"] |
||||
path = vendor/bundles/Symfony/Bundle/AsseticBundle |
||||
url = http://github.com/symfony/AsseticBundle.git |
@ -1,45 +1,16 @@
|
||||
<?php |
||||
|
||||
use Symfony\Component\ClassLoader\UniversalClassLoader; |
||||
use Doctrine\Common\Annotations\AnnotationRegistry; |
||||
|
||||
$loader = new UniversalClassLoader(); |
||||
$loader->registerNamespaces(array( |
||||
'Symfony' => array(__DIR__.'/../vendor/symfony/src', __DIR__.'/../vendor/bundles'), |
||||
'Sensio' => __DIR__.'/../vendor/bundles', |
||||
'JMS' => __DIR__.'/../vendor/bundles', |
||||
'Doctrine\\Common' => __DIR__.'/../vendor/doctrine-common/lib', |
||||
'Doctrine\\DBAL' => __DIR__.'/../vendor/doctrine-dbal/lib', |
||||
'Doctrine' => __DIR__.'/../vendor/doctrine/lib', |
||||
'Monolog' => __DIR__.'/../vendor/monolog/src', |
||||
'Assetic' => __DIR__.'/../vendor/assetic/src', |
||||
'Metadata' => __DIR__.'/../vendor/metadata/src', |
||||
)); |
||||
$loader->registerPrefixes(array( |
||||
'Twig_Extensions_' => __DIR__.'/../vendor/twig-extensions/lib', |
||||
'Twig_' => __DIR__.'/../vendor/twig/lib', |
||||
)); |
||||
$loader = require __DIR__.'/../vendor/autoload.php'; |
||||
|
||||
// intl |
||||
if (!function_exists('intl_get_error_code')) { |
||||
require_once __DIR__.'/../vendor/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php'; |
||||
require_once __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php'; |
||||
|
||||
$loader->registerPrefixFallbacks(array(__DIR__.'/../vendor/symfony/src/Symfony/Component/Locale/Resources/stubs')); |
||||
$loader->add('', __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs'); |
||||
} |
||||
|
||||
$loader->registerNamespaceFallbacks(array( |
||||
__DIR__.'/../src', |
||||
)); |
||||
$loader->register(); |
||||
|
||||
AnnotationRegistry::registerLoader(function($class) use ($loader) { |
||||
$loader->loadClass($class); |
||||
return class_exists($class, false); |
||||
}); |
||||
AnnotationRegistry::registerFile(__DIR__.'/../vendor/doctrine/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php'); |
||||
|
||||
// Swiftmailer needs a special autoloader to allow |
||||
// the lazy loading of the init file (which is expensive) |
||||
require_once __DIR__.'/../vendor/swiftmailer/lib/classes/Swift.php'; |
||||
Swift::registerAutoload(__DIR__.'/../vendor/swiftmailer/lib/swift_init.php'); |
||||
AnnotationRegistry::registerLoader(array($loader, 'loadClass')); |
||||
|
||||
return $loader; |
||||
|
@ -1,240 +0,0 @@
|
||||
#!/usr/bin/env php |
||||
<?php |
||||
|
||||
/* |
||||
* This file is part of the Symfony Standard Edition. |
||||
* |
||||
* (c) Fabien Potencier <fabien@symfony.com> |
||||
* |
||||
* For the full copyright and license information, please view the LICENSE |
||||
* file that was distributed with this source code. |
||||
* |
||||
* @author Fabien Potencier <fabien@symfony.com> |
||||
* @author Florian Preusner <florian@preusner.com> |
||||
*/ |
||||
|
||||
$rootDir = dirname(__DIR__); |
||||
$vendorName = 'vendor'; |
||||
$vendorDir = $rootDir . '/' . $vendorName; |
||||
$submodule = false; |
||||
$cloneOptions = ''; |
||||
$delete = false; |
||||
$install = true; |
||||
|
||||
$commands = array( |
||||
'install' => 'install vendors as specified in deps or deps.lock (recommended)', |
||||
'update' => 'update vendors to their latest versions (as specified in deps)', |
||||
'delete' => 'remove vendors', |
||||
'reinstall' => 'delete and install', |
||||
'submodule:install' => 'install vendors as submodules', |
||||
'submodule:update' => 'update vendors to their latest versions (as specified in deps)', |
||||
'submodule:delete' => 'remove vendors', |
||||
'submodule:reinstall' => 'delete and install' |
||||
); |
||||
|
||||
|
||||
|
||||
array_shift($argv); |
||||
if (!isset($argv[0]) || in_array('help', $argv)) { |
||||
|
||||
$help = "Symfony2 vendors script management.\n"; |
||||
$help .= "Specify a command to run:\n\n"; |
||||
|
||||
foreach($commands as $cmd => $info) { |
||||
|
||||
$help .= str_pad($cmd, 21, ' ') . ": $info\n"; |
||||
} |
||||
|
||||
exit($help . "\n"); |
||||
} |
||||
|
||||
if (!in_array($command = array_shift($argv), array_keys($commands))) { |
||||
exit(sprintf("Command \"%s\" does not exist.\n", $command)); |
||||
} |
||||
|
||||
if (!is_dir($vendorDir)) { |
||||
mkdir($vendorDir, 0777, true); |
||||
} |
||||
|
||||
if (strpos($command, 'submodule') !== false) { |
||||
|
||||
$submodule = true; |
||||
$command = str_replace('submodule:', '', $command); |
||||
|
||||
if(!is_dir($rootDir . '/.git')) { |
||||
|
||||
exit("This project is not a git repository. To use submodules it should be a repository :)\n"); |
||||
} |
||||
} |
||||
|
||||
// versions |
||||
$versions = array(); |
||||
if ('install' === $command && file_exists($rootDir.'/deps.lock')) { |
||||
foreach (file($rootDir.'/deps.lock', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES) as $line) { |
||||
$parts = array_values(array_filter(explode(' ', $line))); |
||||
if (2 !== count($parts)) { |
||||
exit(sprintf('The deps version file is not valid (near "%s")', $line)); |
||||
} |
||||
$versions[$parts[0]] = $parts[1]; |
||||
} |
||||
} |
||||
|
||||
if('delete' === $command) { |
||||
$delete = true; |
||||
$install = false; |
||||
} |
||||
|
||||
if('reinstall' === $command) { |
||||
$delete = true; |
||||
} |
||||
|
||||
$newversions = array(); |
||||
$deps = parse_ini_file($rootDir.'/deps', true, INI_SCANNER_RAW); |
||||
foreach ($deps as $name => $dep) { |
||||
// revision |
||||
if (isset($versions[$name])) { |
||||
$rev = $versions[$name]; |
||||
} else { |
||||
$rev = isset($dep['version']) ? $dep['version'] : 'origin/HEAD'; |
||||
} |
||||
|
||||
// make sure to run commands on rootDir |
||||
system("cd $rootDir"); |
||||
|
||||
// install dir |
||||
if($submodule) { |
||||
|
||||
$installDir = isset($dep['target']) ? $vendorName . $dep['target'] : $vendorName . '/' . $name; |
||||
} else { |
||||
|
||||
$installDir = isset($dep['target']) ? $vendorDir . $dep['target'] : $vendorDir . '/' . $name; |
||||
} |
||||
|
||||
|
||||
|
||||
if($delete) { |
||||
|
||||
echo "> Removing $name\n"; |
||||
|
||||
if($submodule) { |
||||
|
||||
deleteSubmodule($installDir, $rootDir); |
||||
} |
||||
|
||||
if(PHP_OS == 'WINNT') { |
||||
|
||||
system('rmdir /S /Q ' . escapeshellarg(realpath($installDir))); |
||||
} else { |
||||
|
||||
system('rm -rf ' . escapeshellarg($installDir)); |
||||
} |
||||
} |
||||
|
||||
|
||||
if($install) { |
||||
|
||||
echo "> Installing/Updating $name\n"; |
||||
|
||||
// url |
||||
if (!isset($dep['git'])) { |
||||
exit(sprintf('The "git" value for the "%s" dependency must be set.', $name)); |
||||
} |
||||
$url = $dep['git']; |
||||
|
||||
if($submodule) { |
||||
|
||||
$cmd = sprintf('git submodule add %s %s', escapeshellarg($url), escapeshellarg($installDir)); |
||||
$cmd .= ' && git submodule init'; |
||||
|
||||
} else { |
||||
|
||||
$cmd = sprintf('git clone %s %s', escapeshellarg($url), escapeshellarg($installDir)); |
||||
} |
||||
|
||||
echo " $cmd\n"; |
||||
|
||||
system($cmd); |
||||
|
||||
system(sprintf('cd %s && git fetch origin && git reset --hard %s', escapeshellarg($installDir), escapeshellarg($rev))); |
||||
} |
||||
|
||||
if ('update' === $command) { |
||||
ob_start(); |
||||
system(sprintf('cd %s && git log -n 1 --format=%%H', escapeshellarg($installDir))); |
||||
$newversions[] = trim($name.' '.ob_get_clean()); |
||||
} |
||||
} |
||||
|
||||
// update? |
||||
if ('update' === $command) { |
||||
file_put_contents($rootDir.'/deps.lock', implode("\n", $newversions)); |
||||
} |
||||
|
||||
if($install) { |
||||
|
||||
// php on windows can't use the shebang line from system() |
||||
$interpreter = PHP_OS == 'WINNT' ? 'php.exe' : ''; |
||||
|
||||
// Update the bootstrap files |
||||
//system(sprintf('%s %s', $interpreter, escapeshellarg($rootDir.'/bin/build_bootstrap'))); |
||||
|
||||
// Update assets |
||||
system(sprintf('%s %s assets:install --symlink %s', $interpreter, escapeshellarg($rootDir.'/app/console'), escapeshellarg($rootDir.'/web'))); |
||||
|
||||
// Remove the cache |
||||
system(sprintf('%s %s cache:clear --no-warmup', $interpreter, escapeshellarg($rootDir.'/app/console'))); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
function deleteSubmodule($name, $rootDir) { |
||||
|
||||
$gitModules = $rootDir . '/.gitmodules'; |
||||
$gitConfig = $rootDir . '/.git/config'; |
||||
|
||||
$files = array($gitModules, $gitConfig); |
||||
|
||||
foreach($files as $file) : |
||||
|
||||
if(file_exists($file)) { |
||||
|
||||
$fileReturn = array(); |
||||
$found = false; |
||||
|
||||
foreach(file($file) as $line) { |
||||
|
||||
if(strpos($line, '"' . $name . '"') !== false) { |
||||
|
||||
$found = true; |
||||
continue; |
||||
} |
||||
|
||||
if($found) { |
||||
|
||||
if($line{0} != '[') { |
||||
|
||||
continue; |
||||
} |
||||
|
||||
$found = false; |
||||
} |
||||
|
||||
array_push($fileReturn, $line); |
||||
} |
||||
|
||||
$handle = fopen($file, 'wt'); |
||||
|
||||
if($handle) { |
||||
|
||||
fwrite($handle, implode($fileReturn)); |
||||
fclose($handle); |
||||
} |
||||
} |
||||
endforeach; |
||||
|
||||
$cmd = "git rm --cached --force $name"; |
||||
|
||||
echo " $cmd\n"; |
||||
system($cmd); |
||||
} |
@ -0,0 +1,29 @@
|
||||
{ |
||||
"name": "gergelypolonkai/openscrum", |
||||
"description": "OpenScrum project", |
||||
"autoload": { |
||||
"psr-0": { "": "src/" } |
||||
}, |
||||
"require": { |
||||
"symfony/framework-standard-edition": "2.2.*" |
||||
}, |
||||
"scripts": { |
||||
"post-install-cmd": [ |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
||||
], |
||||
"post-update-cmd": [ |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", |
||||
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile" |
||||
] |
||||
}, |
||||
"minimum-stability": "dev", |
||||
"extra": { |
||||
"symfony-app-dir": "app", |
||||
"symfony-web-dir": "web" |
||||
} |
||||
} |
@ -1,63 +0,0 @@
|
||||
[symfony] |
||||
git=http://github.com/symfony/symfony.git |
||||
version=v2.0.12 |
||||
|
||||
[twig] |
||||
git=http://github.com/fabpot/Twig.git |
||||
version=v1.6.2 |
||||
|
||||
[monolog] |
||||
git=http://github.com/Seldaek/monolog.git |
||||
version=1.0.2 |
||||
|
||||
[doctrine-common] |
||||
git=http://github.com/doctrine/common.git |
||||
version=2.1.4 |
||||
|
||||
[doctrine-dbal] |
||||
git=http://github.com/doctrine/dbal.git |
||||
version=2.1.6 |
||||
|
||||
[doctrine] |
||||
git=http://github.com/doctrine/doctrine2.git |
||||
version=2.1.6 |
||||
|
||||
[swiftmailer] |
||||
git=http://github.com/swiftmailer/swiftmailer.git |
||||
version=v4.1.5 |
||||
|
||||
[assetic] |
||||
git=http://github.com/kriswallsmith/assetic.git |
||||
version=v1.0.3 |
||||
|
||||
[twig-extensions] |
||||
git=http://github.com/fabpot/Twig-extensions.git |
||||
|
||||
[metadata] |
||||
git=http://github.com/schmittjoh/metadata.git |
||||
version=1.0.0 |
||||
|
||||
[SensioFrameworkExtraBundle] |
||||
git=http://github.com/sensio/SensioFrameworkExtraBundle.git |
||||
target=/bundles/Sensio/Bundle/FrameworkExtraBundle |
||||
version=origin/2.0 |
||||
|
||||
[JMSSecurityExtraBundle] |
||||
git=http://github.com/schmittjoh/JMSSecurityExtraBundle.git |
||||
target=/bundles/JMS/SecurityExtraBundle |
||||
version=origin/1.0.x |
||||
|
||||
[SensioDistributionBundle] |
||||
git=http://github.com/sensio/SensioDistributionBundle.git |
||||
target=/bundles/Sensio/Bundle/DistributionBundle |
||||
version=origin/2.0 |
||||
|
||||
[SensioGeneratorBundle] |
||||
git=http://github.com/sensio/SensioGeneratorBundle.git |
||||
target=/bundles/Sensio/Bundle/GeneratorBundle |
||||
version=origin/2.0 |
||||
|
||||
[AsseticBundle] |
||||
git=http://github.com/symfony/AsseticBundle.git |
||||
target=/bundles/Symfony/Bundle/AsseticBundle |
||||
version=v1.0.1 |
@ -1,15 +0,0 @@
|
||||
symfony v2.0.12 |
||||
twig v1.6.2 |
||||
monolog 1.0.2 |
||||
doctrine-common 2.1.4 |
||||
doctrine-dbal 2.1.6 |
||||
doctrine 2.1.6 |
||||
swiftmailer v4.1.5 |
||||
assetic v1.0.3 |
||||
twig-extensions 1dfff8e793f50f651c4f74f796c2c68a4aee3147 |
||||
metadata 1.0.0 |
||||
SensioFrameworkExtraBundle 638f545b7020b9e9d5944a7e3167f60ed848250d |
||||
JMSSecurityExtraBundle 541a4c242328dc04b99540c75346cc74a7c0cfb5 |
||||
SensioDistributionBundle 20b66a408084ad8752f98e50f10533f5245310bf |
||||
SensioGeneratorBundle b1ccb78c1743f30817b0fce9bb5c6baff6ed7bf8 |
||||
AsseticBundle v1.0.1 |
@ -0,0 +1,7 @@
|
||||
include.path=${php.global.include.path} |
||||
php.version=PHP_54 |
||||
source.encoding=UTF-8 |
||||
src.dir=. |
||||
tags.asp=false |
||||
tags.short=true |
||||
web.root=. |
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns="http://www.netbeans.org/ns/project/1"> |
||||
<type>org.netbeans.modules.php.project</type> |
||||
<configuration> |
||||
<data xmlns="http://www.netbeans.org/ns/php-project/1"> |
||||
<name>openscrum</name> |
||||
</data> |
||||
</configuration> |
||||
</project> |
@ -1 +0,0 @@
|
||||
Subproject commit 541a4c242328dc04b99540c75346cc74a7c0cfb5 |
@ -1 +0,0 @@
|
||||
Subproject commit 20b66a408084ad8752f98e50f10533f5245310bf |
@ -1 +0,0 @@
|
||||
Subproject commit 638f545b7020b9e9d5944a7e3167f60ed848250d |
@ -1 +0,0 @@
|
||||
Subproject commit b1ccb78c1743f30817b0fce9bb5c6baff6ed7bf8 |
@ -1 +0,0 @@
|
||||
Subproject commit 41b5913b5086a0909af92adcb4a6005ee0051b16 |
@ -1 +0,0 @@
|
||||
Subproject commit b886898821288d305862ee9c567cc5b5cbb4c0dc |
@ -1 +0,0 @@
|
||||
Subproject commit 148a049df448af9772259e69a034e51c0c080805 |
@ -1 +0,0 @@
|
||||
Subproject commit 982b4c9498b7dd85e70f6d35e65d909c888e6345 |
@ -1 +0,0 @@
|
||||
Subproject commit 1dfff8e793f50f651c4f74f796c2c68a4aee3147 |
@ -1,12 +1,24 @@
|
||||
<?php |
||||
|
||||
require_once __DIR__.'/../app/bootstrap.php.cache'; |
||||
use Symfony\Component\ClassLoader\ApcClassLoader; |
||||
use Symfony\Component\HttpFoundation\Request; |
||||
|
||||
$loader = require_once __DIR__.'/../app/bootstrap.php.cache'; |
||||
|
||||
// Use APC for autoloading to improve performance |
||||
// Change 'sf2' by the prefix you want in order to prevent key conflict with another application |
||||
/* |
||||
$loader = new ApcClassLoader('sf2', $loader); |
||||
$loader->register(true); |
||||
*/ |
||||
|
||||
require_once __DIR__.'/../app/AppKernel.php'; |
||||
//require_once __DIR__.'/../app/AppCache.php'; |
||||
|
||||
use Symfony\Component\HttpFoundation\Request; |
||||
|
||||
$kernel = new AppKernel('prod', false); |
||||
$kernel->loadClassCache(); |
||||
//$kernel = new AppCache($kernel); |
||||
$kernel->handle(Request::createFromGlobals())->send(); |
||||
$request = Request::createFromGlobals(); |
||||
$response = $kernel->handle($request); |
||||
$response->send(); |
||||
$kernel->terminate($request, $response); |
||||
|
@ -1,18 +1,29 @@
|
||||
<?php |
||||
|
||||
// if you don't want to setup permissions the proper way, just uncomment the following PHP line |
||||
require 'dev-ips.php'; |
||||
|
||||
use Symfony\Component\HttpFoundation\Request; |
||||
|
||||
// If you don't want to setup permissions the proper way, just uncomment the following PHP line |
||||
// read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information |
||||
//umask(0000); |
||||
|
||||
// this check prevents access to debug front controllers that are deployed by accident to production servers. |
||||
// feel free to remove this, extend it, or make something more sophisticated. |
||||
require_once __DIR__.'/check_ip.php'; |
||||
// This check prevents access to debug front controllers that are deployed by accident to production servers. |
||||
// Feel free to remove this, extend it, or make something more sophisticated. |
||||
if (isset($_SERVER['HTTP_CLIENT_IP']) |
||||
|| isset($_SERVER['HTTP_X_FORWARDED_FOR']) |
||||
|| !in_array(@$_SERVER['REMOTE_ADDR'], $dev_ips) |
||||
) { |
||||
header('HTTP/1.0 403 Forbidden'); |
||||
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); |
||||
} |
||||
|
||||
require_once __DIR__.'/../app/bootstrap.php.cache'; |
||||
$loader = require_once __DIR__.'/../app/bootstrap.php.cache'; |
||||
require_once __DIR__.'/../app/AppKernel.php'; |
||||
|
||||
use Symfony\Component\HttpFoundation\Request; |
||||
|
||||
$kernel = new AppKernel('dev', true); |
||||
$kernel->loadClassCache(); |
||||
$kernel->handle(Request::createFromGlobals())->send(); |
||||
$request = Request::createFromGlobals(); |
||||
$response = $kernel->handle($request); |
||||
$response->send(); |
||||
$kernel->terminate($request, $response); |
||||
|
@ -1 +0,0 @@
|
||||
/var/www/vhosts/demo.openscrum.org/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/public |
@ -1 +0,0 @@
|
||||
/var/www/vhosts/demo.openscrum.org/vendor/bundles/Sensio/Bundle/DistributionBundle/Resources/public |
@ -1 +0,0 @@
|
||||
/var/www/vhosts/demo.openscrum.org/vendor/symfony/src/Symfony/Bundle/WebProfilerBundle/Resources/public |
Loading…
Reference in new issue