Merge 5fe4272a76
into 08cf1a3fd7
commit
0b86f605f1
|
@ -47,7 +47,8 @@
|
|||
"LanguageServer\\": "src/"
|
||||
},
|
||||
"files" : [
|
||||
"src/utils.php"
|
||||
"src/utils.php",
|
||||
"src/bootstrap.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit bootstrap="vendor/autoload.php">
|
||||
<phpunit bootstrap="src/bootstrap.php">
|
||||
<testsuites>
|
||||
<testsuite name="PHP Language Server Test Suite">
|
||||
<directory>./tests</directory>
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
// PHP_CodeSniffer does not define an autoloader in its composer.json,
|
||||
// so we must invoke it ourselves.
|
||||
require __DIR__ . "/../vendor/squizlabs/php_codesniffer/autoload.php";
|
Loading…
Reference in New Issue