Skip to content

Commit 0fb08bd

Browse files
committed
Initial commit
0 parents  commit 0fb08bd

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/vendor/
2+
/.phpunit.result.cache
3+
/composer.lock

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "previousnext/phpunit-splitter",
3+
"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

Comments
 (0)