Skip to content
  1. Nov 25, 2024
  2. Nov 22, 2024
  3. Nov 21, 2024
  4. Nov 19, 2024
  5. Nov 18, 2024
  6. Nov 17, 2024
  7. Nov 16, 2024
  8. Nov 14, 2024
  9. Nov 13, 2024
  10. Nov 12, 2024
    • Harald Eilertsen's avatar
      Add PHPStan as a developer dependency. · 28b5b0ca
      Harald Eilertsen authored
      PHPStan is a static PHP code analyzer that's aimed at finding actual
      bugs in the code. Where PHP Code Sniffer is about codeing standards,
      PHPStan is about correctness of code.
      
      The provided configuration file (`phpstan.neon.dist`) is configured to
      use the _lowest_ level of checks that PHPStan will report on. See
      https://phpstan.org/user-guide/rule-levels for information about the
      various rule levels.
      
      Run an analysis of the code base like this:
      
          % ./vendor/bin/phpstan
      
      It will output any found issues to stdout.
      
      You can also run it like this:
      
          % ./vendor/bin/phpstan --error-format=raw > phpstan.log
      
      This will give you an output file in a format that's suitable for use
      with typical editors for mapping errors to source locations.
      28b5b0ca
  11. Nov 11, 2024
  12. Nov 10, 2024
Loading