aboutsummaryrefslogtreecommitdiff
path: root/vendor/chillerlan/php-settings-container/.phan/config.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2024-11-21 17:27:15 +0000
committerwn_ <invalid@email.com>2024-11-21 17:34:32 +0000
commit64a36970d6c4a90c1ab738e0b859b4fffa18c603 (patch)
treebf385b721be5b1c6067040ce65f0b892bb1c9225 /vendor/chillerlan/php-settings-container/.phan/config.php
parent1e14fc0fd957cea2ab176d5132c3fe5329991c17 (diff)
Bump 'chillerlan/php-qrcode' to 5.0.x.
* Maintains PHP `7.4` compatibility and adds PHP `8.4` compatibility * The `4.4.x` branch does the same, but I didn't see any reason not to go to `5.0.x`. * https://github.com/chillerlan/php-qrcode/releases
Diffstat (limited to 'vendor/chillerlan/php-settings-container/.phan/config.php')
-rw-r--r--vendor/chillerlan/php-settings-container/.phan/config.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/vendor/chillerlan/php-settings-container/.phan/config.php b/vendor/chillerlan/php-settings-container/.phan/config.php
deleted file mode 100644
index 468bd9983..000000000
--- a/vendor/chillerlan/php-settings-container/.phan/config.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-/**
- * This configuration will be read and overlaid on top of the
- * default configuration. Command-line arguments will be applied
- * after this file is read.
- */
-return [
- // Supported values: `'5.6'`, `'7.0'`, `'7.1'`, `'7.2'`, `'7.3'`,
- // `'7.4'`, `null`.
- // If this is set to `null`,
- // then Phan assumes the PHP version which is closest to the minor version
- // of the php executable used to execute Phan.
- //
- // Note that the **only** effect of choosing `'5.6'` is to infer
- // that functions removed in php 7.0 exist.
- // (See `backward_compatibility_checks` for additional options)
- 'target_php_version' => '7.4',
-
- // A list of directories that should be parsed for class and
- // method information. After excluding the directories
- // defined in exclude_analysis_directory_list, the remaining
- // files will be statically analyzed for errors.
- //
- // Thus, both first-party and third-party code being used by
- // your application should be included in this list.
- 'directory_list' => [
- 'examples',
- 'src',
- 'tests',
- 'vendor',
- ],
-
- // A regex used to match every file name that you want to
- // exclude from parsing. Actual value will exclude every
- // "test", "tests", "Test" and "Tests" folders found in
- // "vendor/" directory.
- 'exclude_file_regex' => '@^vendor/.*/(tests?|Tests?)/@',
-
- // 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 both the `directory_list`
- // and `exclude_analysis_directory_list` arrays.
- 'exclude_analysis_directory_list' => [
- 'tests',
- 'vendor',
- ],
-];