Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit cc03f31

Browse files
committed
copied from Codeception/Codeception
0 parents  commit cc03f31

30 files changed

+2543
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# PHPUnit Wrapper
2+
3+
Codeception heavily relies on PHPUnit for running and managing tests.
4+
Not all PHPUnit classes fit the needs of Codeception, that's why they were extended or redefined.
5+
6+
Releases follow major PHPUnit versions.

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "codeception/phpunit-wrapper",
3+
"description": "PHPUnit classes used by Codeception",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Davert",
9+
"email": "davert.php@resend.cc"
10+
}
11+
],
12+
"require": {
13+
"phpunit/phpunit": ">=4.8.28 <5.0.0 || >=5.6.3 <7.0",
14+
"phpunit/php-code-coverage": ">=2.2.4 <6.0",
15+
"sebastian/comparator": ">1.1 <3.0",
16+
"sebastian/diff": ">=1.4 <4.0"
17+
},
18+
"autoload":{
19+
"psr-4":{
20+
"Codeception\\PHPUnit": "src\\"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)