Skip to content

Commit 44f6e7b

Browse files
authored
Merge pull request #90
PHP Unit conf for new version
2 parents 1337312 + d31d9f5 commit 44f6e7b

File tree

3 files changed

+21
-33
lines changed

3 files changed

+21
-33
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php_version: [7.4, 8.1]
15-
laravel_version: [5.5.*, 9.*, 10.*]
14+
php_version: [7.4, 8.2]
15+
laravel_version: [5.5.*, 10.*]
1616

1717
steps:
1818
- name: Checkout commit

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/.idea
33
composer.lock
44
.php-cs-fixer.cache
5-
.phpunit.result.cache
5+
.phpunit.cache/

phpunit.xml

Lines changed: 18 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
5-
backupGlobals="false"
6-
backupStaticAttributes="false"
7-
colors="true"
8-
convertErrorsToExceptions="true"
9-
convertNoticesToExceptions="true"
10-
convertWarningsToExceptions="true"
11-
processIsolation="false"
12-
stopOnFailure="false"
13-
bootstrap="vendor/autoload.php">
14-
<coverage>
15-
<include>
16-
<directory>./src</directory>
17-
</include>
18-
<exclude>
19-
<directory>./tests</directory>
20-
<directory>./vendor</directory>
21-
</exclude>
22-
</coverage>
23-
<php>
24-
<ini name="error_reporting" value="-1"/>
25-
</php>
26-
27-
<testsuites>
28-
<testsuite name="Remember Upload Service Testsuit">
29-
<directory>./tests/</directory>
30-
</testsuite>
31-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
3+
<coverage>
4+
<include>
5+
<directory>./src</directory>
6+
</include>
7+
<exclude>
8+
<directory>./tests</directory>
9+
<directory>./vendor</directory>
10+
</exclude>
11+
</coverage>
12+
<php>
13+
<ini name="error_reporting" value="-1"/>
14+
</php>
15+
<testsuites>
16+
<testsuite name="Remember Upload Service Testsuit">
17+
<directory>./tests/</directory>
18+
</testsuite>
19+
</testsuites>
3220
</phpunit>

0 commit comments

Comments
 (0)