我刚刚开始了一项新工作,之前的Web开发人员使用Symfony框架创建了一个应用程序。我以前没有使用过Symfony,但我对Django很熟悉,我注意到它们的结构非常相似。代码库托管在gitlab repo中,我可以将zip文件下载到我的本地计算机上。
我开始阅读有关如何设置和安装Symfony应用程序的文档,但我注意到我下载的内容与“标准”Symfony应用程序的外观有很多不同之处。我的最终目标是在localhost
上运行此应用以测试一些改进。
我开始调试我遇到的每一个问题,并且已经打败了一些错误,但他们只是继续前进。我会发布一些我认为与我的问题相关的文件以及我的目录结构。
编辑:清理后的新Composer.json文件。
composer.json
:
{
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
"psr-4": {
"AppBundle\\": "src/AppBundle"
},
"classmap": [ "app/AppKernel.php", "app/AppCache.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" },
"files": [ "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" ]
},
"require": {
"php": ">=5.5.9",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^5.0.0",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/symfony": "3.4.*",
"twig/twig": "^1.0||^2.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"platform": {
"php": "5.5.9"
},
"sort-packages": true
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "3.4-dev"
}
}
}
我不得不将"files":["app/AppKernel.php"],
添加到作曲家中以阻止错误,因为抱怨没有找到内核。
AppKernel.php
:
<?php
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new AppBundle\AppBundle(),
];
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new
Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
if ('dev' === $this->getEnvironment()) {
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
}
}
return $bundles;
}
public function getRootDir()
{
return __DIR__;
}
public function getCacheDir()
{
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
}
public function getLogDir()
{
return dirname(__DIR__).'/var/logs';
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(function (ContainerBuilder $container) {
$container->setParameter('container.autowiring.strict_mode', true);
$container->setParameter('container.dumper.inline_class_loader', true);
$container->addObjectResource($this);
});
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}
}
运行Fatal error: Class 'Symfony\Component\HttpKernel\Kernel' not found in /Users/.../app/AppKernel.php on line 7
后,我遇到的主要问题是php bin/console server:start
。这个app内核文件甚至不在repo中,我不得不从标准的symfony应用程序中复制它,这也解决了一些错误。
bin/console
:
#!/usr/bin/env php
<?php
require __DIR__.'/../vendor/autoload.php';
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
//use Symfony\Component\Debug\Debug;
// if you don't want to setup permissions the proper way, just uncomment the following PHP line
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
// for more information
//umask(0000);
set_time_limit(0);
$input = new ArgvInput();
$env = $input->getParameterOption(['--env', '-e'], getenv('SYMFONY_ENV') ?: 'dev');
$debug = getenv('SYMFONY_DEBUG') !== '0' && !$input->hasParameterOption(['--no-debug', '']) && $env !== 'prod';
if ($debug) {
Debug::enable();
}
$kernel = new AppKernel($env, $debug);
$kernel->loadClassCache();
$application = new Application($kernel);
$application->run($input);
这个文件不存在,我也必须复制它,我也有use Symfony\Component\Debug\Debug;
注释掉,因为它引发了一个错误,说这个类不存在。
我知道这个问题很开放,但基本上,我只是想知道如何能够在本地运行这个应用程序,我已经阅读了许多github问题线程,SO问题和文档,但无济于事。
如果您需要任何其他信息/文件,请告诉我,我正在尝试在Mac OSX上运行。
编辑:能够最终创建一个干净的项目,但现在遇到了一个特殊的问题。
正在运行php bin/console server:start
会出现此错误:There are no commands defined in the "server" namespace.
我看了这个server:run Exception There are no commands defined in the "server" namespace,但我的AppKernel.php
似乎与接受的答案中提供的匹配。
Edit2:bin/console list
的输出为:
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
help Displays help for a command
list Lists commands
答案 0 :(得分:1)
使用一个标准的Symfony应用程序,您最不需要的是:
您可以像您一样克隆存储库或下载源代码。使用终端转到项目文件夹并执行以下操作:
composer install
这应该下载composer.json中描述的所有必需依赖项。在最后,它可能会要求您提供一些参数,如数据库设置。如果没有,请检查app/configs/parameters.yml.dist
并复制没有.dist
扩展名的文件。然后使用首选的文本编辑器更新参数。
现在您已准备好设置开发数据库:
bin/console doctrine:database:create
bin/console doctrine:schema:create
这应该创建一个空数据库模式。您的项目可能还有固定装置和迁移。如有必要,只需使用bin/console list
检查命令。您可能还有可以重复使用的生产数据库中的(匿名)数据库转储。
现在您只需要运行一个网络服务器。对于开发,Symfony也有一个命令:
bin/console server:start
这将在后台启动服务器并使其保持运行。现在,您应该可以使用http://localhost:8000
在浏览器中打开网站了