We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906402b commit e306e75Copy full SHA for e306e75
2 files changed
composer.json
@@ -41,6 +41,15 @@
41
"Wikibase\\DataModel\\": "src/"
42
}
43
},
44
+ "autoload-dev": {
45
+ "psr-4": {
46
+ "Wikibase\\DataModel\\Fixtures\\": "tests/fixtures",
47
+ "Wikibase\\DataModel\\Tests\\": [
48
+ "tests/unit",
49
+ "tests/component"
50
+ ]
51
+ }
52
+ },
53
"extra": {
54
"branch-alias": {
55
"dev-master": "7.0.x-dev"
tests/bootstrap.php
@@ -18,9 +18,4 @@
18
die( 'You need to install this package with Composer before you can run the tests' );
19
20
21
-$classLoader = require __DIR__ . '/../vendor/autoload.php';
22
-
23
-$classLoader->addPsr4( 'Wikibase\\DataModel\\Tests\\', __DIR__ . '/unit/' );
24
-$classLoader->addPsr4( 'Wikibase\\DataModel\\Fixtures\\', __DIR__ . '/fixtures/' );
25
26
-unset( $classLoader );
+require __DIR__ . '/../vendor/autoload.php';
0 commit comments