Skip to content

Commit d02dd2b

Browse files
authored
Update project to use PHP 8.0 (#36)
1 parent 65068cb commit d02dd2b

21 files changed

+1056
-2823
lines changed

.github/workflows/test-application.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install and configure PHP
2828
uses: shivammathur/setup-php@v2
2929
with:
30-
php-version: '7.4'
30+
php-version: '8.0'
3131
extensions: ctype, iconv, mysql
3232
coverage: none
3333
tools: composer

assets/admin/babel.config.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"presets": ["@babel/preset-env", "@babel/preset-react"],
33
"plugins": [
44
["@babel/plugin-proposal-decorators", {"legacy": true}],
5-
"@babel/plugin-transform-flow-strip-types"
5+
"@babel/plugin-transform-flow-strip-types",
6+
"@babel/plugin-proposal-nullish-coalescing-operator"
67
],
78
"assumptions": {
89
"setPublicClassFields": true

assets/admin/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"devDependencies": {
3232
"@babel/core": "^7.5.5",
3333
"@babel/plugin-proposal-decorators": "^7.4.4",
34+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
3435
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
3536
"@babel/preset-env": "^7.5.5",
3637
"@babel/preset-react": "^7.0.0",

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"friendsofsymfony/http-cache-bundle": "^2.8",
1515
"handcraftedinthealps/zendsearch": "^2.0",
1616
"jackalope/jackalope-doctrine-dbal": "^1.3",
17-
"sulu/sulu": "~2.3.0",
17+
"sulu/sulu": "~2.3.1",
1818
"symfony/config": "^5.1",
1919
"symfony/dotenv": "^5.1",
2020
"symfony/flex": "^1.2",

composer.lock

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

config/routes/framework.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Custom error route is in sulu_website.yaml configured
Binary file not shown.

public/build/admin/fonts/sulu.5904240a3998e593f23b852a3cd9d721.svg

-171
This file was deleted.
Binary file not shown.

public/build/admin/main.71664cebfa3a198e0e91.css

-10
This file was deleted.

public/build/admin/main.71664cebfa3a198e0e91.js

-1,681
This file was deleted.

public/build/admin/main.71664cebfa3a198e0e91.js.map

-1
This file was deleted.

public/build/admin/main.5b04cf5d3379b6be88ec.css public/build/admin/main.bcea72ecd1109726c2b4.css

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

public/build/admin/main.5b04cf5d3379b6be88ec.js public/build/admin/main.bcea72ecd1109726c2b4.js

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

public/build/admin/main.5b04cf5d3379b6be88ec.js.map public/build/admin/main.bcea72ecd1109726c2b4.js.map

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

public/build/admin/manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"main.css": "build/admin/main.5b04cf5d3379b6be88ec.css",
3-
"main.js": "build/admin/main.5b04cf5d3379b6be88ec.js",
4-
"main.js.map": "build/admin/main.5b04cf5d3379b6be88ec.js.map",
2+
"main.css": "build/admin/main.bcea72ecd1109726c2b4.css",
3+
"main.js": "build/admin/main.bcea72ecd1109726c2b4.js",
4+
"main.js.map": "build/admin/main.bcea72ecd1109726c2b4.js.map",
55
"/build/admin/fonts/fontawesome-webfont.ttf?v=4.7.0": "/build/admin/fonts/fontawesome-webfont.1e59d2330b4c6deb84b340635ed36249.ttf",
66
"/build/admin/fonts/fontawesome-webfont.woff2?v=4.7.0": "/build/admin/fonts/fontawesome-webfont.20fd1704ea223900efa9fd4e869efb08.woff2",
77
"/build/admin/fonts/fontawesome-webfont.eot?v=4.7.0": "/build/admin/fonts/fontawesome-webfont.8b43027f47b20503057dfbbaa9401fef.eot",

src/Repository/EventRepository.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,13 @@ function (Event $entity) use ($locale) {
8484
);
8585
}
8686

87-
protected function appendJoins(QueryBuilder $queryBuilder, string $alias, string $locale): void
87+
/**
88+
* @param string $alias
89+
* @param string $locale
90+
*
91+
* @return void
92+
*/
93+
protected function appendJoins(QueryBuilder $queryBuilder, $alias, $locale)
8894
{
8995
// join and select entities that are used for creating data items or resource items in the DataProvider here
9096
}

symfony.lock

+6-3
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,6 @@
236236
"config/packages/prod/jms_serializer.yaml"
237237
]
238238
},
239-
"laminas/laminas-zendframework-bridge": {
240-
"version": "1.0.4"
241-
},
242239
"layershifter/tld-database": {
243240
"version": "1.0.69"
244241
},
@@ -567,6 +564,9 @@
567564
"symfony/options-resolver": {
568565
"version": "v4.3.4"
569566
},
567+
"symfony/password-hasher": {
568+
"version": "v5.3.2"
569+
},
570570
"symfony/phpunit-bridge": {
571571
"version": "4.3",
572572
"recipe": {
@@ -604,6 +604,9 @@
604604
"symfony/polyfill-php80": {
605605
"version": "v1.17.1"
606606
},
607+
"symfony/polyfill-php81": {
608+
"version": "v1.23.0"
609+
},
607610
"symfony/process": {
608611
"version": "v4.3.4"
609612
},

tests/Functional/Pages/HomepageTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ public function testHomepage(): void
6262
$this->assertStringContainsString($event2->getTitle() ?: '', $content);
6363
}
6464

65-
protected function getDocumentManager(): DocumentManagerInterface
65+
protected static function getDocumentManager(): DocumentManagerInterface
6666
{
67-
return $this->getContainer()->get('sulu_document_manager.document_manager');
67+
return static::getContainer()->get('sulu_document_manager.document_manager');
6868
}
6969
}

tests/Functional/Traits/EventTrait.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ public function createEvent(string $title, string $locale): Event
1515
$event = $this->getEventRepository()->create($locale);
1616
$event->setTitle($title);
1717

18-
$this->getEntityManager()->persist($event);
19-
$this->getEntityManager()->flush();
18+
static::getEntityManager()->persist($event);
19+
static::getEntityManager()->flush();
2020

2121
return $event;
2222
}
@@ -25,7 +25,7 @@ public function enableEvent(Event $event): void
2525
{
2626
$event->setEnabled(true);
2727

28-
$this->getEntityManager()->flush();
28+
static::getEntityManager()->flush();
2929
}
3030

3131
public function findEventById(int $id, string $locale): ?Event
@@ -35,8 +35,8 @@ public function findEventById(int $id, string $locale): ?Event
3535

3636
protected function getEventRepository(): EventRepository
3737
{
38-
return $this->getEntityManager()->getRepository(Event::class);
38+
return static::getEntityManager()->getRepository(Event::class);
3939
}
4040

41-
abstract protected function getEntityManager(): EntityManagerInterface;
41+
abstract protected static function getEntityManager(): EntityManagerInterface;
4242
}

tests/Functional/Traits/PageTrait.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ protected function createPage(
1919
array $data,
2020
string $locale = 'en'
2121
): PageDocument {
22-
$documentManager = $this->getDocumentManager();
22+
$documentManager = static::getDocumentManager();
2323

2424
/** @var PageDocument $document */
2525
$document = $documentManager->create('page');
@@ -50,5 +50,5 @@ protected function createPage(
5050
return $document;
5151
}
5252

53-
abstract protected function getDocumentManager(): DocumentManagerInterface;
53+
abstract protected static function getDocumentManager(): DocumentManagerInterface;
5454
}

0 commit comments

Comments
 (0)