We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a72365 commit ea851d7Copy full SHA for ea851d7
composer.json
@@ -9,12 +9,16 @@
9
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22"
10
},
11
"require-dev": {
12
- "tracy/tracy": "^2.5"
+ "tracy/tracy": "^2.11",
13
+ "nette/tester": "^2.6"
14
15
"autoload": {
16
"classmap": ["src/"]
17
18
"bin": ["ecs"],
19
+ "scripts": {
20
+ "tester": "tester tests -s"
21
+ },
22
"extra": {
23
"branch-alias": {
24
"dev-master": "3-dev"
tests/.gitignore
@@ -0,0 +1,2 @@
1
+/output
2
+/tmp
tests/bootstrap.php
@@ -0,0 +1,8 @@
+<?php
+
3
+declare(strict_types=1);
4
5
+require __DIR__ . '/../vendor/autoload.php';
6
7
+Tester\Environment::setup();
8
+Tester\Environment::setupFunctions();
0 commit comments