These probably need some doc guy to finish & merge:
- Secrets management: symfony/symfony-docs#11396
- Password migration: symfony/symfony-docs#12467
- Static injection: symfony/symfony-docs#10991
<?php | |
use Symfony\Component\Console\Application; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Input\InputOption; | |
use Symfony\Component\Console\Output\OutputInterface; | |
$app = new Application(); |
<?php | |
namespace App\Security; | |
use App\Security\User; | |
use Lcobucci\JWT\Encoding\CannotDecodeContent; | |
use Lcobucci\JWT\Token\InvalidTokenStructure; | |
use Lcobucci\JWT\Token\Parser; | |
use Lcobucci\JWT\Token\UnsupportedHeaderFound; | |
use Lcobucci\JWT\Validation\Constraint\RelatedTo; |
{ | |
"require": { | |
"symfony/error-handler": "^5.3" | |
} | |
} |
TYPE_TITLE Bootstrap 4 Form Theme | |
====================== | |
TYPE_TEXT Symfony provides several ways of integrating Bootstrap into your application. The | |
most straightforward way is to add the required | |
TYPE_LITERAL ``<link>`` | |
TYPE_TEXT and | |
TYPE_LITERAL ``<script>`` | |
<?php | |
/* | |
* This file is part of the Symfony package. | |
* | |
* (c) Fabien Potencier <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
<?php | |
/* | |
* This file is part of the Symfony package. | |
* | |
* (c) Fabien Potencier <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
These probably need some doc guy to finish & merge:
security: | |
encoders: | |
AppBundle\Entity\User: | |
algorithm: pbkdf2 | |
hash_algorithm: sha512 | |
encode_as_base64: true | |
iterations: 1000 | |
# http://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers | |
providers: | |
our_db_provider: |
Welcome! No matter what you're level of Symfony or how you feel about your English (I'm sure it's just fine), we have plenty of things we need help with! This document will guide you through everything:
We're meeting on Freenode in the #symfony-docs
<?php | |
// ... | |
class MyUnit | |
{ | |
private $authChecker; | |
public function __construct(AuthorizationCheckerInterface $authChecker) | |
{ |