Skip to content

Updating testing to php 8.4 #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d731703
update for new Mongodb version 4.
danielme85 Sep 4, 2023
6d1fee9
remove circleci, update dockerfile to create php 8.2 container.
danielme85 Sep 4, 2023
fde2249
try github action again.
danielme85 Sep 4, 2023
9f10f23
try github action again.
danielme85 Sep 4, 2023
85ae07d
try github action again.
danielme85 Sep 4, 2023
0761a63
try github action again.
danielme85 Sep 4, 2023
9877658
try github action again.
danielme85 Sep 4, 2023
09881d2
try github action again.
danielme85 Sep 4, 2023
16aed94
Circualr log writes fix (#59)
Manriel Sep 4, 2023
01ab455
update testing, composer, and phpunit config
danielme85 Sep 9, 2023
1b826d7
try github action again.
danielme85 Sep 13, 2023
f927c1f
change build options for docker
danielme85 Sep 13, 2023
20b22a9
change build options for docker
danielme85 Sep 13, 2023
7e84b9c
change build options for docker
danielme85 Sep 13, 2023
bfe2d76
fix tests
danielme85 Sep 13, 2023
1181510
fix tests
danielme85 Sep 13, 2023
69b11fe
fix tests
danielme85 Sep 13, 2023
cf3adc2
fix tests
danielme85 Sep 13, 2023
74d29bf
(un)fix tests?
danielme85 Sep 13, 2023
e979785
(un)fix tests?
danielme85 Sep 13, 2023
f8324bb
mongodb why you no connect?
danielme85 Sep 16, 2023
bb0a793
WIP
danielme85 Sep 16, 2023
ebd0a1c
tweak testing
danielme85 Sep 17, 2023
0ab2a09
use different env for local vs github action testing.
danielme85 Sep 18, 2023
31a6b82
ignore phpunit cache folder
danielme85 Sep 18, 2023
b099ec9
Merge branch 'main' into dev
danielme85 Nov 25, 2024
5a45dca
update testing to php 8.4 on github actions
danielme85 Nov 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
laravel: [ ^10.0, ^11.0 ]
php: ['8.2', '8.3']
php: ['8.3', '8.4']
include:
- laravel: ^10.0
testbench: ^8.0
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ coverage.xml
_ide_helper.php
_ide_helper_models.php.php
.phpunit.result.cache
.phpunit.cache
.phpunit.cache/*
3 changes: 0 additions & 3 deletions buildDockerImages.sh

This file was deleted.

25 changes: 25 additions & 0 deletions phpunit.xml.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
colors="true"
processIsolation="false"
stopOnFailure="false"
failOnWarning="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false">
<coverage/>
<testsuites>
<testsuite name="Test Suite danielme85/laravel-log-to-db">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
</source>
</phpunit>