We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f7a30 commit 07fb0b6Copy full SHA for 07fb0b6
composer.json
@@ -31,5 +31,13 @@
31
},
32
"autoload": {
33
"psr-4": { "Gitlab\\": "lib/Gitlab/" }
34
+ },
35
+ "autoload-dev": {
36
+ "psr-4": { "Gitlab\\Tests\\": "test/Gitlab/Tests/" }
37
38
+ "extra": {
39
+ "branch-alias": {
40
+ "dev-master": "9.0.x-dev"
41
+ }
42
}
43
phpunit.xml.dist
@@ -9,7 +9,7 @@
9
processIsolation="false"
10
stopOnFailure="false"
11
syntaxCheck="false"
12
- bootstrap="test/bootstrap.php"
+ bootstrap="vendor/autoload.php"
13
>
14
<testsuites>
15
<testsuite name="php-gitlab-api Test Suite">
@@ -22,4 +22,4 @@
22
<directory suffix=".php">./lib/Gitlab/</directory>
23
</whitelist>
24
</filter>
25
-</phpunit>
+</phpunit>
test/bootstrap.php
0 commit comments