We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2292179 commit 7e5c5b9Copy full SHA for 7e5c5b9
composer.json
@@ -17,5 +17,13 @@
17
"files": [
18
"src/helpers.php"
19
]
20
+ },
21
+ "autoload-dev": {
22
+ "psr-4": {
23
+ "Proxy\\Tests\\": "tests/"
24
+ }
25
26
+ "require-dev": {
27
+ "phpunit/phpunit": "7"
28
}
-}
29
+}
tests/TestCase.php
@@ -0,0 +1,8 @@
1
+<?php
2
+
3
+namespace Proxy\Tests;
4
5
+abstract class TestCase extends \PHPUnit\Framework\TestCase
6
+{
7
+ // TODO
8
0 commit comments