We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056ea93 commit 1a85f41Copy full SHA for 1a85f41
composer.json
@@ -8,6 +8,9 @@
8
"symfony/dependency-injection": "^6.4 || ^7.0",
9
"symfony/http-kernel": "^6.4 || ^7.0"
10
},
11
+ "require-dev": {
12
+ "phpunit/phpunit": "^10.5 || ^11.0"
13
+ },
14
"autoload": {
15
"psr-4": {
16
"Sylius\\TelemetryBundle\\": "src/"
phpunit.xml.dist
@@ -0,0 +1,12 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4
+ bootstrap="vendor/autoload.php"
5
+ colors="true"
6
+>
7
+ <testsuites>
+ <testsuite name="TelemetryBundle">
+ <directory>tests</directory>
+ </testsuite>
+ </testsuites>
+</phpunit>
0 commit comments