Skip to content

Commit a679abe

Browse files
Merge pull request #3 from codenamephp/dependabot/docker/docker/application/webdevops/php-dev-8.3
Bump webdevops/php-dev from 8.2 to 8.3 in /docker/application
2 parents 5f4d01b + edd6368 commit a679abe

9 files changed

Lines changed: 16721 additions & 10696 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
ci:
2020
uses: codenamephp/workflows.php/.github/workflows/ci.yml@1
2121
with:
22-
php-versions: '["8.2"]'
22+
php-versions: '["8.2","8.3"]'
2323
test-command: |
2424
INTEGRATION_TESTS_LOCAL_PORT_HTTP=80 \
2525
INTEGRATION_TESTS_LOCAL_PORT_HTTPS=443 \

.idea/deploymentchecks.http.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/application/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM webdevops/php-dev:8.2
1+
FROM webdevops/php-dev:8.3
22

33
COPY --from=composer:2 /usr/bin/composer /usr/local/bin/composer
44
COPY --from=phario/phive:0.15.2 /usr/local/bin/phive /usr/local/bin/phive

phive.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright 2023 Bastian Schwarz <bastian@codename-php.de>.
3+
~ Copyright 2024 Bastian Schwarz <bastian@codename-php.de>.
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -15,9 +15,9 @@
1515
~ limitations under the License.
1616
-->
1717
<phive xmlns="https://phar.io/phive">
18-
<phar name="phpunit" version="^10.1" location="./tools/phpunit.phar" copy="true" installed="10.1.3"/>
19-
<phar name="psalm" version="^5.8" location="./tools/psalm" copy="true" installed="5.11.0"/>
20-
<phar name="composer-unused" version="^0.8.6" location="./tools/composer-unused" copy="true" installed="0.8.8"/>
21-
<phar name="composer-require-checker" version="^4.5" location="./tools/composer-require-checker" copy="true" installed="4.6.0"/>
18+
<phar name="phpunit" version="^10.1" location="./tools/phpunit.phar" copy="true" installed="10.5.7"/>
19+
<phar name="psalm" version="^5.8" location="./tools/psalm" copy="true" installed="5.19.0"/>
20+
<phar name="composer-unused" version="^0.8.6" location="./tools/composer-unused" copy="true" installed="0.8.11"/>
21+
<phar name="composer-require-checker" version="^4.5" location="./tools/composer-require-checker" copy="true" installed="4.8.0"/>
2222
<phar name="infection" version="^0.26" location="./tools/infection" copy="true" installed="0.26.21"/>
2323
</phive>

src/CssSelector/SymfonyDomCrawlerAdapter.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22
/*
3-
* Copyright 2023 Bastian Schwarz <bastian@codename-php.de>.
3+
* Copyright 2024 Bastian Schwarz <bastian@codename-php.de>.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -17,6 +17,7 @@
1717

1818
namespace de\codenamephp\deploymentchecks\http\CssSelector;
1919

20+
use Symfony\Component\CssSelector\CssSelectorConverter;
2021
use Symfony\Component\DomCrawler\Crawler;
2122

2223
/**
@@ -27,6 +28,6 @@
2728
public function __construct(public Crawler $crawler) {}
2829

2930
public function exists(string $selector) : bool {
30-
return $this->crawler->filter($selector)->count() > 0;
31+
return class_exists(CssSelectorConverter::class) && $this->crawler->filter($selector)->count() > 0;
3132
}
3233
}

tools/composer-require-checker

11.5 KB
Binary file not shown.

tools/composer-unused

3.01 MB
Binary file not shown.

tools/phpunit.phar

Lines changed: 16710 additions & 10686 deletions
Large diffs are not rendered by default.

tools/psalm

180 KB
Binary file not shown.

0 commit comments

Comments
 (0)