We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 0fb08bdCopy full SHA for 0fb08bd
.gitignore
@@ -0,0 +1,3 @@
1
+/vendor/
2
+/.phpunit.result.cache
3
+/composer.lock
composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "previousnext/phpunit-splitter",
+ "description": "Splits phpunit tests",
4
+ "license": "GPL-2.0-or-later",
5
+ "authors": [
6
+ {
7
+ "name": "Michael Strelan",
8
+ "email": "michael.strelan@previousnext.com.au"
9
+ }
10
+ ],
11
+ "type": "project",
12
+ "require": {
13
+ "php": "^8.1",
14
+ "phpunit/phpunit": "^9.6",
15
+ "previousnext/phpunit-finder": "^2.0"
16
+ },
17
+ "autoload": {
18
+ "psr-4": {"PhpUnitSplitter\\": "src/"}
19
20
+ "autoload-dev": {
21
+ "psr-4": {"PhpUnitSplitter\\Tests\\": "tests/"}
22
23
+ "config": {
24
+ "sort-packages": true
25
26
+}
0 commit comments