1545 search results for symfony bundle

38 lines | src/Controller/CommentAdminController.php
// ... lines 1 - 7
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
// ... lines 9 - 15
class CommentAdminController extends AbstractController
{
// ... lines 18 - 36
}
See Code Block in Script
37 lines | src/Controller/CommentAdminController.php
// ... lines 1 - 9
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// ... lines 11 - 14
class CommentAdminController extends Controller
{
// ... lines 17 - 35
}
See Code Block in Script
// ... lines 1 - 5
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
// ... line 7
class IpsumApiController extends AbstractController
// ... lines 9 - 25
See Code Block in Script
85 lines | src/Controller/ArticleController.php
// ... lines 1 - 7
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
// ... lines 9 - 12
class ArticleController extends AbstractController
{
// ... lines 15 - 83
}
See Code Block in Script
13 lines | config/bundles.php
// ... lines 1 - 2
return [
// ... line 4
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
// ... lines 6 - 11
];
See Code Block in Script
9 lines | config/bundles.php
// ... lines 1 - 2
return [
// ... lines 4 - 6
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
];
See Code Block in Script
29 lines | src/Controller/ArticleController.php
// ... lines 1 - 5
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
// ... lines 7 - 8
class ArticleController extends AbstractController
{
// ... lines 11 - 27
}
See Code Block in Script
// ... lines 1 - 5
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
// ... lines 7 - 8
class GenusController extends Controller
{
// ... lines 11 - 22
}
See Code Block in Script
56 lines | src/AppBundle/Test/ApiTestCase.php
// ... lines 1 - 6
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
class ApiTestCase extends KernelTestCase
{
// ... lines 11 - 55
}
See Code Block in Script
16 lines | config/bundles.php
// ... lines 1 - 2
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
// ... lines 5 - 14
];
See Code Block in Script
// ... lines 1 - 4
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
// ... line 6
class LockDownRepositoryTest extends KernelTestCase
// ... lines 8 - 14
See Code Block in Script
6 lines | assets/bootstrap.js
import { startStimulusApp } from '@symfony/stimulus-bundle';
const app = startStimulusApp();
// ... lines 4 - 6
See Code Block in Script
64 lines | tests/Service/MailerTest.php
// ... lines 1 - 9
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
// ... lines 11 - 15
class MailerTest extends KernelTestCase
{
// ... lines 18 - 62
}
See Code Block in Script
26 lines | config/bundles.php
// ... lines 1 - 2
return [
// ... lines 4 - 9
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
// ... lines 11 - 24
];
See Code Block in Script
OK, I see toy have this error on clear cache step. First of all, I let's bump "symfony/swiftmailer-bundle" constraint to "^2.6.4", I see you have lower one. Also, let's use "symfony/symfony": "3.4.*" to allow only ...
The Controller class is created like this ` namespace AppBundle\Controller\ExtraOpening; use AppBundle\Entity\ACRGroup as ACRGroup; use AppBundle\Entity\ExtraOpening\DebitPeriod; use Symfony\Bundle\FrameworkBundle ...
MattWelander
MattWelander
Read Full Comment
Where is the recipe that does the magic of adding the controller to bootstrap.js and the linked file to package.json? I'm trying to create a ux component (symfony bundle with stimulus controllers) and am not sure how ...
Tac-Tacelosky
Tac-Tacelosky
Read Full Comment
Just an info, this dialog seems to be new when installing doctrine via composer: Symfony operations: 3 recipes (d1677be98e0980609549e3b67c08b1cb) - WARNING doctrine/doctrine-cache-bundle (>=1.3): From github.com ...
... you have sensio/framework-extra-bundle installed) Symfony will automatically query for that entity." Because, if I understand it correctly, it is not a core feature of Symfony.
Sander H.
Sander H.
Read Full Comment
20 lines | .env
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=4777a99cd6c61ce84969bd1338737c38
###< symfony/framework-bundle ###
See Code Block in Script