File tree 12 files changed +31
-31
lines changed
12 files changed +31
-31
lines changed Original file line number Diff line number Diff line change 56
56
},
57
57
"scripts" : {
58
58
"list-modules" : [
59
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::listModules"
59
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::listModules"
60
60
],
61
61
"create-directories" : [
62
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createBinaries" ,
63
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createPublicWebDirectory"
62
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createBinaries" ,
63
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createPublicWebDirectory"
64
64
],
65
65
"update-configuration" : [
66
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createGeneralConfiguration" ,
67
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createBundleConfiguration" ,
68
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createRoutesConfiguration" ,
69
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::createParametersConfiguration" ,
70
- " PhpList\\ PhpList4 \\ Composer\\ ScriptHandler::clearAllCaches"
66
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createGeneralConfiguration" ,
67
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createBundleConfiguration" ,
68
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createRoutesConfiguration" ,
69
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::createParametersConfiguration" ,
70
+ " PhpList\\ Core \\ Composer\\ ScriptHandler::clearAllCaches"
71
71
],
72
72
"post-install-cmd" : [
73
73
" @create-directories" ,
Original file line number Diff line number Diff line change 9
9
>
10
10
<php >
11
11
<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" />
13
13
</php >
14
14
</phpunit >
Original file line number Diff line number Diff line change 6
6
use FOS \RestBundle \Controller \FOSRestController ;
7
7
use FOS \RestBundle \Routing \ClassResourceInterface ;
8
8
use FOS \RestBundle \View \View ;
9
- use PhpList \PhpList4 \Domain \Model \Messaging \SubscriberList ;
10
- use PhpList \PhpList4 \Domain \Repository \Messaging \SubscriberListRepository ;
11
- use PhpList \PhpList4 \Security \Authentication ;
9
+ use PhpList \Core \Domain \Model \Messaging \SubscriberList ;
10
+ use PhpList \Core \Domain \Repository \Messaging \SubscriberListRepository ;
11
+ use PhpList \Core \Security \Authentication ;
12
12
use PhpList \RestBundle \Controller \Traits \AuthenticationTrait ;
13
13
use Symfony \Component \HttpFoundation \Request ;
14
14
Original file line number Diff line number Diff line change 6
6
use FOS \RestBundle \Controller \FOSRestController ;
7
7
use FOS \RestBundle \Routing \ClassResourceInterface ;
8
8
use FOS \RestBundle \View \View ;
9
- use PhpList \PhpList4 \Domain \Model \Identity \Administrator ;
10
- use PhpList \PhpList4 \Domain \Model \Identity \AdministratorToken ;
11
- use PhpList \PhpList4 \Domain \Repository \Identity \AdministratorRepository ;
12
- use PhpList \PhpList4 \Domain \Repository \Identity \AdministratorTokenRepository ;
13
- use PhpList \PhpList4 \Security \Authentication ;
9
+ use PhpList \Core \Domain \Model \Identity \Administrator ;
10
+ use PhpList \Core \Domain \Model \Identity \AdministratorToken ;
11
+ use PhpList \Core \Domain \Repository \Identity \AdministratorRepository ;
12
+ use PhpList \Core \Domain \Repository \Identity \AdministratorTokenRepository ;
13
+ use PhpList \Core \Security \Authentication ;
14
14
use PhpList \RestBundle \Controller \Traits \AuthenticationTrait ;
15
15
use Symfony \Component \HttpFoundation \Request ;
16
16
use Symfony \Component \HttpFoundation \Response ;
Original file line number Diff line number Diff line change 6
6
use FOS \RestBundle \Controller \FOSRestController ;
7
7
use FOS \RestBundle \Routing \ClassResourceInterface ;
8
8
use FOS \RestBundle \View \View ;
9
- use PhpList \PhpList4 \Domain \Model \Subscription \Subscriber ;
10
- use PhpList \PhpList4 \Domain \Repository \Subscription \SubscriberRepository ;
11
- use PhpList \PhpList4 \Security \Authentication ;
9
+ use PhpList \Core \Domain \Model \Subscription \Subscriber ;
10
+ use PhpList \Core \Domain \Repository \Subscription \SubscriberRepository ;
11
+ use PhpList \Core \Security \Authentication ;
12
12
use PhpList \RestBundle \Controller \Traits \AuthenticationTrait ;
13
13
use Symfony \Component \HttpFoundation \Request ;
14
14
use Symfony \Component \HttpFoundation \Response ;
Original file line number Diff line number Diff line change 3
3
4
4
namespace PhpList \RestBundle \Controller \Traits ;
5
5
6
- use PhpList \PhpList4 \Domain \Model \Identity \Administrator ;
7
- use PhpList \PhpList4 \Security \Authentication ;
6
+ use PhpList \Core \Domain \Model \Identity \Administrator ;
7
+ use PhpList \Core \Security \Authentication ;
8
8
use Symfony \Component \HttpFoundation \Request ;
9
9
use Symfony \Component \HttpKernel \Exception \AccessDeniedHttpException ;
10
10
Original file line number Diff line number Diff line change 3
3
4
4
namespace PhpList \RestBundle \Tests \Integration \Controller ;
5
5
6
- use PhpList \PhpList4 \TestingSupport \AbstractWebTest ;
7
- use PhpList \PhpList4 \TestingSupport \Traits \DatabaseTestTrait ;
6
+ use PhpList \Core \TestingSupport \AbstractWebTest ;
7
+ use PhpList \Core \TestingSupport \Traits \DatabaseTestTrait ;
8
8
use Symfony \Component \DomCrawler \Crawler ;
9
9
use Symfony \Component \HttpFoundation \Response ;
10
10
Original file line number Diff line number Diff line change 3
3
4
4
namespace PhpList \RestBundle \Tests \Integration \Controller ;
5
5
6
- use PhpList \PhpList4 \Domain \Repository \Messaging \SubscriberListRepository ;
6
+ use PhpList \Core \Domain \Repository \Messaging \SubscriberListRepository ;
7
7
use PhpList \RestBundle \Controller \ListController ;
8
8
9
9
/**
Original file line number Diff line number Diff line change 4
4
namespace PhpList \RestBundle \Tests \Integration \Controller ;
5
5
6
6
use Doctrine \Common \Persistence \ObjectRepository ;
7
- use PhpList \PhpList4 \Domain \Model \Identity \AdministratorToken ;
8
- use PhpList \PhpList4 \Domain \Repository \Identity \AdministratorTokenRepository ;
7
+ use PhpList \Core \Domain \Model \Identity \AdministratorToken ;
8
+ use PhpList \Core \Domain \Repository \Identity \AdministratorTokenRepository ;
9
9
use PhpList \RestBundle \Controller \SessionController ;
10
10
use Symfony \Component \HttpFoundation \Response ;
11
11
Original file line number Diff line number Diff line change 3
3
4
4
namespace PhpList \RestBundle \Tests \Integration \Controller ;
5
5
6
- use PhpList \PhpList4 \Domain \Model \Subscription \Subscriber ;
7
- use PhpList \PhpList4 \Domain \Repository \Subscription \SubscriberRepository ;
6
+ use PhpList \Core \Domain \Model \Subscription \Subscriber ;
7
+ use PhpList \Core \Domain \Repository \Subscription \SubscriberRepository ;
8
8
use PhpList \RestBundle \Controller \SubscriberController ;
9
9
10
10
/**
Original file line number Diff line number Diff line change 3
3
4
4
namespace PhpList \RestBundle \Tests \Integration \Routing ;
5
5
6
- use PhpList \PhpList4 \TestingSupport \AbstractWebTest ;
6
+ use PhpList \Core \TestingSupport \AbstractWebTest ;
7
7
8
8
/**
9
9
* Testcase.
Original file line number Diff line number Diff line change 4
4
namespace PhpList \RestBundle \Tests \System \Controller ;
5
5
6
6
use GuzzleHttp \Client ;
7
- use PhpList \PhpList4 \TestingSupport \Traits \SymfonyServerTrait ;
7
+ use PhpList \Core \TestingSupport \Traits \SymfonyServerTrait ;
8
8
use PHPUnit \Framework \TestCase ;
9
9
use Symfony \Component \HttpFoundation \Response ;
10
10
You can’t perform that action at this time.
0 commit comments