Skip to content

Commit 208153d

Browse files
authoredMar 7, 2018
[TASK] Use the new Core namespace (#57)
1 parent 943db3c commit 208153d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

‎composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,18 @@
5252
},
5353
"scripts": {
5454
"list-modules": [
55-
"PhpList\\PhpList4\\Composer\\ScriptHandler::listModules"
55+
"PhpList\\Core\\Composer\\ScriptHandler::listModules"
5656
],
5757
"create-directories": [
58-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createBinaries",
59-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createPublicWebDirectory"
58+
"PhpList\\Core\\Composer\\ScriptHandler::createBinaries",
59+
"PhpList\\Core\\Composer\\ScriptHandler::createPublicWebDirectory"
6060
],
6161
"update-configuration": [
62-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createGeneralConfiguration",
63-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createBundleConfiguration",
64-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createRoutesConfiguration",
65-
"PhpList\\PhpList4\\Composer\\ScriptHandler::createParametersConfiguration",
66-
"PhpList\\PhpList4\\Composer\\ScriptHandler::clearAllCaches"
62+
"PhpList\\Core\\Composer\\ScriptHandler::createGeneralConfiguration",
63+
"PhpList\\Core\\Composer\\ScriptHandler::createBundleConfiguration",
64+
"PhpList\\Core\\Composer\\ScriptHandler::createRoutesConfiguration",
65+
"PhpList\\Core\\Composer\\ScriptHandler::createParametersConfiguration",
66+
"PhpList\\Core\\Composer\\ScriptHandler::clearAllCaches"
6767
],
6868
"post-install-cmd": [
6969
"@create-directories",

‎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/ApplicationBundle/PhpListApplicationBundleTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace PhpList\WebFrontend\Tests\System\ApplicationBundle;
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)
Please sign in to comment.