Skip to content

Commit c8b48ab

Browse files
committed
Modernize tests
1 parent f247649 commit c8b48ab

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
php:
15-
- "7.2"
16-
- "7.3"
17-
- "7.4"
18-
- "8.0"
1915
- "8.1"
2016
- "8.2"
2117
- "8.3"
18+
- "8.4"
19+
- "8.5"
2220
dependencies:
2321
- "psr/container:^1.1"
2422
- "psr/container:^2.0"
@@ -46,4 +44,4 @@ jobs:
4644
composer update --prefer-dist --no-progress
4745
4846
- name: Run PHPUnit tests
49-
run: vendor/bin/simple-phpunit --verbose
47+
run: vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"psr/container": "^1.1 || ^2.0"
1717
},
1818
"require-dev": {
19-
"symfony/phpunit-bridge": "^5.4@dev"
19+
"phpunit/phpunit": "*"
2020
},
2121
"autoload": {
2222
"psr-0": { "Pimple": "src/" }

phpunit.xml.dist

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,4 @@
1111
<directory>./src/Pimple/Tests</directory>
1212
</testsuite>
1313
</testsuites>
14-
15-
<listeners>
16-
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
17-
</listeners>
1814
</phpunit>

0 commit comments

Comments
 (0)