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.
2 parents d07bed1 + 964ca2c commit 69b7e10Copy full SHA for 69b7e10
composer.json
@@ -31,5 +31,10 @@
31
"psr-4": {
32
"SqlParser\\": "src"
33
}
34
+ },
35
+ "autoload-dev": {
36
+ "psr-4": {
37
+ "SqlParser\\Tests\\": "tests"
38
+ }
39
40
phpunit.xml
@@ -1,7 +1,7 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit backupGlobals="false"
3
backupStaticAttributes="false"
4
- bootstrap="tests/bootstrap.php"
+ bootstrap="vendor/autoload.php"
5
colors="true"
6
convertErrorsToExceptions="true"
7
convertNoticesToExceptions="true"
tests/bootstrap.php tests/TestCase.phptests/bootstrap.php renamed to tests/TestCase.php
@@ -8,8 +8,7 @@
8
9
use SqlParser\Lexer;
10
use SqlParser\Parser;
11
-
12
-require_once 'vendor/autoload.php';
+use SqlParser\TokensList;
13
14
/**
15
* Implements useful methods for testing.
0 commit comments