Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / .phan / config.php
1 <?php
2
3 /**
4  * This configuration will be read and overlaid on top of the
5  * default configuration. Command line arguments will be applied
6  * after this file is read.
7  */
8 return [
9
10     // A list of directories that should be parsed for class and
11     // method information. After excluding the directories
12     // defined in exclude_analysis_directory_list, the remaining
13     // files will be statically analyzed for errors.
14     //
15     // Thus, both first-party and third-party code being used by
16     // your application should be included in this list.
17     'directory_list' => [
18         'src/',
19         'vendor/dnoegel/php-xdg-base-dir/src/',
20         'vendor/doctrine/instantiator/src/',
21         'vendor/hoa/console/',
22         'vendor/jakub-onderka/php-console-color/src/',
23         'vendor/jakub-onderka/php-console-highlighter/src/',
24         'vendor/nikic/php-parser/lib/',
25         'vendor/phpdocumentor/reflection-docblock/',
26         'vendor/symfony/console/',
27         'vendor/symfony/filesystem/',
28         'vendor/symfony/finder/',
29         'vendor/symfony/var-dumper/',
30     ],
31
32     // A directory list that defines files that will be excluded
33     // from static analysis, but whose class and method
34     // information should be included.
35     //
36     // Generally, you'll want to include the directories for
37     // third-party code (such as "vendor/") in this list.
38     //
39     // n.b.: If you'd like to parse but not analyze 3rd
40     //       party code, directories containing that code
41     //       should be added to both the `directory_list`
42     //       and `exclude_analysis_directory_list` arrays.
43     "exclude_analysis_directory_list" => [
44         'vendor/'
45     ],
46 ];