Skip to content

Commit 8baf595

Browse files
oliverkleeSam Tuke
authored and
Sam Tuke
committed
[TASK] Use the new core namespace (#81)
1 parent 1de992a commit 8baf595

File tree

5 files changed

+50
-49
lines changed

5 files changed

+50
-49
lines changed

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@
6060
},
6161
"scripts": {
6262
"list-modules": [
63-
"PhpList\\PhpList4\\Composer\\ScriptHandler::listModules"
63+
"PhpList\\Core\\Composer\\ScriptHandler::listModules"
6464
],
6565
"create-directories": [
66-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createBinaries",
67-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createPublicWebDirectory"
66+
"PhpList\\Core\\Composer\\ScriptHandler::createBinaries",
67+
"PhpList\\Core\\Composer\\ScriptHandler::createPublicWebDirectory"
6868
],
6969
"update-configuration": [
70-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createGeneralConfiguration",
71-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createBundleConfiguration",
72-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createRoutesConfiguration",
73-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createParametersConfiguration",
74-
"PhpList\\PhpList4\\Composer\\ScriptHandler::clearAllCaches"
70+
"PhpList\\Core\\Composer\\ScriptHandler::createGeneralConfiguration",
71+
"PhpList\\Core\\Composer\\ScriptHandler::createBundleConfiguration",
72+
"PhpList\\Core\\Composer\\ScriptHandler::createRoutesConfiguration",
73+
"PhpList\\Core\\Composer\\ScriptHandler::createParametersConfiguration",
74+
"PhpList\\Core\\Composer\\ScriptHandler::clearAllCaches"
7575
],
7676
"post-install-cmd": [
7777
"@create-directories",

composer.lock

+39-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
>
1010
<php>
1111
<ini name="error_reporting" value="-1"/>
12-
<server name="KERNEL_CLASS" value="PhpList\PhpList4\Core\ApplicationKernel"/>
12+
<server name="KERNEL_CLASS" value="PhpList\Core\Core\ApplicationKernel"/>
1313
</php>
1414
</phpunit>

tests/System/HttpEndpoints/RestApiTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace PhpList\BaseDistribution\Tests\System\HttpEndpoints;
55

66
use GuzzleHttp\Client;
7-
use PhpList\PhpList4\TestingSupport\Traits\SymfonyServerTrait;
7+
use PhpList\Core\TestingSupport\Traits\SymfonyServerTrait;
88
use PHPUnit\Framework\TestCase;
99
use Symfony\Component\HttpFoundation\Response;
1010

tests/System/HttpEndpoints/WebFrontEndTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace PhpList\BaseDistribution\Tests\System\HttpEndpoints;
55

66
use GuzzleHttp\Client;
7-
use PhpList\PhpList4\TestingSupport\Traits\SymfonyServerTrait;
7+
use PhpList\Core\TestingSupport\Traits\SymfonyServerTrait;
88
use PHPUnit\Framework\TestCase;
99

1010
/**

0 commit comments

Comments
 (0)