Skip to content

Commit fe58a2c

Browse files
committed
Add composer files
1 parent 495b857 commit fe58a2c

2 files changed

Lines changed: 1442 additions & 0 deletions

File tree

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "cross-solution/phpunit-utils",
3+
"description": "Utilities to aid in writing unit tests with the PHPUnit Framework",
4+
"license": "MIT",
5+
"authors": [{
6+
"name": "Mathias Gelhausen",
7+
"email": "gelhausen@cross-solution.de"
8+
}],
9+
"keywords": [
10+
"phpunit", "utilities", "helper", "testing"
11+
],
12+
"prefer-stable": true,
13+
"config": {
14+
"optimize-autoloader": false
15+
},
16+
"require": {
17+
"php": ">=7.1",
18+
"phpunit/phpunit": "^5.7"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"Cross\\TestUtils\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"Cross\\TestUtilsTest\\": "test/TestUtilsTest"
28+
}
29+
},
30+
"scripts": {
31+
"test": "vendor/bin/phpunit"
32+
}
33+
}

0 commit comments

Comments
 (0)