Skip to content
Snippets Groups Projects
Commit 7ab95bb3 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

wip

parent e940b636
No related branches found
No related tags found
No related merge requests found
Pipeline #13809 failed
...@@ -39,4 +39,4 @@ APP_BUILDINFO=unknown # a git hash or something identifying the build ...@@ -39,4 +39,4 @@ APP_BUILDINFO=unknown # a git hash or something identifying the build
APP_BUILDINFO_URL='#' APP_BUILDINFO_URL='#'
# Disable the webserver bundle (avoids deprecation warnings). Use docker instead. # Disable the webserver bundle (avoids deprecation warnings). Use docker instead.
DISABLE_DEV_SERVER=true DISABLE_DEV_SERVER=false
\ No newline at end of file \ No newline at end of file
#!/usr/bin/env php #!/usr/bin/env php
<?php <?php
use App\Kernel; use DBP\API\Server\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application; use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput; use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Debug\Debug; use Symfony\Component\Debug\Debug;
......
...@@ -98,4 +98,4 @@ ...@@ -98,4 +98,4 @@
"symfony/web-server-bundle": "^4.4", "symfony/web-server-bundle": "^4.4",
"vimeo/psalm": "^3.10" "vimeo/psalm": "^3.10"
} }
} }
\ No newline at end of file
This diff is collapsed.
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<php> <php>
<ini name="error_reporting" value="-1" /> <ini name="error_reporting" value="-1" />
<server name="APP_ENV" value="test" force="true" /> <server name="APP_ENV" value="test" force="true" />
<server name="KERNEL_CLASS" value="App\Kernel" /> <server name="KERNEL_CLASS" value="DBP\API\Server\Kernel" />
<server name="SHELL_VERBOSITY" value="-1" /> <server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" /> <server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="8" /> <server name="SYMFONY_PHPUNIT_VERSION" value="8" />
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
declare(strict_types=1); declare(strict_types=1);
use App\Kernel; use DBP\API\Server\Kernel;
use Symfony\Component\ErrorHandler\Debug; use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
declare(strict_types=1); declare(strict_types=1);
namespace App; namespace DBP\API\Server;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\Config\Loader\LoaderInterface;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment