Skip to content

Commit e03c28d

Browse files
committed
How about this, will this work?
1 parent 2e78875 commit e03c28d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
},
2828
"autoload-dev": {
2929
"psr-4": {
30-
"PE\\": "tests/PE"
30+
"PE\\Tests\\": "tests/PE/Tests",
31+
"PE\\Nodes\\": "tests/PE/nodes",
32+
"PE\\Samples\\": "tests/PE/samples"
3133
}
3234
}
3335
}

tests/bootstrap.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,4 @@
88
define('ROOT_DIR', dirname(TESTS_DIR));
99

1010
// Load our autoloader, and add our Test class namespace
11-
$autoloader = require(ROOT_DIR . '/vendor/autoload.php');
12-
$autoloader->add('PE\\nodes', __DIR__ . 'nodes');
13-
$autoloader->add('PE\\samples', __DIR__ . 'samples');
11+
$autoloader = require(ROOT_DIR . '/vendor/autoload.php');

0 commit comments

Comments
 (0)