Skip to content

Commit 40d7260

Browse files
committed
remove dependency on symfony-cmf testing component
1 parent d1fc412 commit 40d7260

File tree

4 files changed

+3
-40
lines changed

4 files changed

+3
-40
lines changed

.github/workflows/test-application.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,4 @@ jobs:
5454
run: vendor/bin/simple-phpunit install
5555

5656
- name: "Execute test cases"
57-
run: |
58-
if [[ $SYMFONY_PHPUNIT_VERSION == '' ]]; then unset SYMFONY_PHPUNIT_VERSION; fi;
59-
make test
60-
env:
61-
SYMFONY_PHPUNIT_VERSION: "${{ matrix.phpunit-version }}"
57+
run: vendor/bin/simple-phpunit

Makefile

-32
This file was deleted.

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"symfony/phpunit-bridge": "^6.0",
2626
"symfony/dependency-injection": "^6.0",
2727
"symfony/config": "^6.0",
28-
"symfony/event-dispatcher": "^6.0",
29-
"symfony-cmf/testing": "dev-master as 4.2"
28+
"symfony/event-dispatcher": "^6.0"
3029
},
3130
"suggest": {
3231
"symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version ^6.0"

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
44
<phpunit
55
colors="true"
6-
bootstrap="vendor/symfony-cmf/testing/bootstrap/bootstrap.php"
6+
bootstrap="vendor/autoload.php"
77
>
88

99
<testsuites>

0 commit comments

Comments
 (0)