Skip to content

Commit 4b2d24f

Browse files
Merge pull request #25 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 8e0f25e + 909f9d6 commit 4b2d24f

File tree

5 files changed

+43
-12
lines changed

5 files changed

+43
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
ci:
2020
uses: codenamephp/workflows.php/.github/workflows/ci.yml@1
2121
with:
22-
php-versions: '["8.1"]'
22+
php-versions: '["8.2","8.3"]'

.installer/install.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'vendor' => 'codenamephp',
2222
'componentName' => $componentName,
2323
'namespace' => implode('\\', array_merge(['de', 'codenamephp'], explode('.', $componentName))),
24-
'phpVersion' => '8.2',
24+
'phpVersion' => '8.3',
2525
];
2626

2727
(new StepExecutor(
@@ -38,4 +38,4 @@
3838
new DeleteFilesAndFolders($variableReplacer, $filesystem, [dirname(__DIR__) . '/src/.gitkeep', __DIR__], $variables),
3939
)
4040
))->run();
41-
});
41+
});

.phive/phars.xml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,24 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--~
3+
~ Copyright 2020 Bastian Schwarz <[email protected]>.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
~
17+
-->
218
<phive xmlns="https://phar.io/phive">
3-
<phar name="phpunit" version="^10.1" location="./tools/phpunit.phar" copy="true" />
4-
<phar name="psalm" version="^5.11" location="./tools/psalm" copy="true" />
5-
<phar name="composer-unused" version="^0.8.8" location="./tools/composer-unused" copy="true" />
6-
<phar name="composer-require-checker" version="^4.6" location="./tools/composer-require-checker" copy="true" />
7-
<phar name="infection" version="^0.26" location="./tools/infection" copy="true" />
19+
<phar name="phpunit" version="^10.0" location="./tools/phpunit.phar" copy="true" installed="10.5.8"/>
20+
<phar name="psalm" version="^5.8" location="./tools/psalm" copy="true" installed="5.20.0"/>
21+
<phar name="composer-unused" version="^0.8.6" location="./tools/composer-unused" copy="true" installed="0.8.11"/>
22+
<phar name="composer-require-checker" version="^4.5" location="./tools/composer-require-checker" copy="true" installed="4.8.0"/>
23+
<phar name="infection" version="^0.26" location="./tools/infection" copy="true" installed="0.26.21"/>
824
</phive>

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

test/phpunit.dist.xml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--~
3+
~ Copyright 2020 Bastian Schwarz <[email protected]>.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
~
17+
-->
218
<phpunit
319
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
20+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
521
colors="true"
622
bootstrap="./../vendor/autoload.php"
723
cacheDirectory="../.cache/phpunit"
824
>
9-
<coverage/>
1025
<testsuites>
1126
<testsuite name="all">
1227
<directory>.</directory>
@@ -17,7 +32,7 @@
1732
</php>
1833
<source>
1934
<include>
20-
<directory>./../src</directory>
35+
<directory suffix=".php">./../src</directory>
2136
</include>
2237
</source>
2338
</phpunit>

0 commit comments

Comments
 (0)