Lock file maintenance
This commit is contained in:
parent
ff31bf599f
commit
3a53c3adc9
326 changed files with 30009 additions and 16 deletions
2
vendor/endroid/qrcode/tests/Bundle/app/.gitignore
vendored
Normal file
2
vendor/endroid/qrcode/tests/Bundle/app/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/cache
|
||||
/logs
|
||||
36
vendor/endroid/qrcode/tests/Bundle/app/AppKernel.php
vendored
Normal file
36
vendor/endroid/qrcode/tests/Bundle/app/AppKernel.php
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* (c) Jeroen van den Enden <info@endroid.nl>
|
||||
*
|
||||
* This source file is subject to the MIT license that is bundled
|
||||
* with this source code in the file LICENSE.
|
||||
*/
|
||||
|
||||
use Symfony\Component\Config\Loader\LoaderInterface;
|
||||
use Symfony\Component\HttpKernel\Kernel;
|
||||
|
||||
class AppKernel extends Kernel
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function registerBundles()
|
||||
{
|
||||
$bundles = [
|
||||
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
|
||||
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
|
||||
new Endroid\QrCode\Bundle\EndroidQrCodeBundle(),
|
||||
];
|
||||
|
||||
return $bundles;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function registerContainerConfiguration(LoaderInterface $loader)
|
||||
{
|
||||
$loader->load(__DIR__.'/config/config.yml');
|
||||
}
|
||||
}
|
||||
7
vendor/endroid/qrcode/tests/Bundle/app/bootstrap.php
vendored
Normal file
7
vendor/endroid/qrcode/tests/Bundle/app/bootstrap.php
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
use Doctrine\Common\Annotations\AnnotationRegistry;
|
||||
|
||||
$loader = require __DIR__.'/../../../vendor/autoload.php';
|
||||
|
||||
AnnotationRegistry::registerLoader([$loader, 'loadClass']);
|
||||
6
vendor/endroid/qrcode/tests/Bundle/app/config/config.yml
vendored
Normal file
6
vendor/endroid/qrcode/tests/Bundle/app/config/config.yml
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
framework:
|
||||
test: ~
|
||||
secret: ThisTokenIsNotSoSecretChangeIt
|
||||
router:
|
||||
resource: "%kernel.root_dir%/config/routing.yml"
|
||||
strict_requirements: ~
|
||||
4
vendor/endroid/qrcode/tests/Bundle/app/config/routing.yml
vendored
Normal file
4
vendor/endroid/qrcode/tests/Bundle/app/config/routing.yml
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
EndroidQrCodeBundle:
|
||||
resource: "@EndroidQrCodeBundle/Controller/"
|
||||
type: annotation
|
||||
prefix: /qrcode
|
||||
Loading…
Add table
Add a link
Reference in a new issue