From 22f5272074ba3eba62197fccff585b83231290bd Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Tue, 29 Aug 2017 11:31:15 +0200 Subject: [PATCH] Add phan config --- .phan/config.php | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .phan/config.php diff --git a/.phan/config.php b/.phan/config.php new file mode 100644 index 00000000..c9f5e278 --- /dev/null +++ b/.phan/config.php @@ -0,0 +1,39 @@ + [ + 'src', + 'vendor', + 'examples' + ], + + // A directory list that defines files that will be excluded + // from static analysis, but whose class and method + // information should be included. + // + // Generally, you'll want to include the directories for + // third-party code (such as "vendor/") in this list. + // + // n.b.: If you'd like to parse but not analyze 3rd + // party code, directories containing that code + // should be added to the `directory_list` as + // to `exclude_analysis_directory_list`. + "exclude_analysis_directory_list" => [ + 'vendor/' + ], + + 'skip_slow_php_options_warning' => true, +];