Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 30, 2024 via composer

phpstan/extension-installer 1.3.1

Composer plugin for automatic installation of PHPStan extensions
Package summary
Share
0
issues
1
license
2
MIT
Package created
25 Apr 2019
Version published
24 May 2023
Maintainers
1
Total deps
2
Direct deps
1
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
phpstan/extension-installer@1.3.1
phpstan/phpstan@1.10.67
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

1
All Dependencies CSV
β“˜ This is a list of phpstan/extension-installer 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
phpstan/phpstan1.10.67-MIT
prod

Visualizations

Frequently Asked Questions

What does phpstan/extension-installer do?

The phpstan/extension-installer is a Composer plugin designed for the automatic installation of PHPStan extensions. PHPStan is a static analysis tool for PHP which helps catch potential issues in code without running it. The extension installer significantly simplifies the process of adding extensions to your project enabling automatic configuration updating so you don't have to manually modify your PHPStan configuration file each time you add or remove an extension.

How do you use phpstan/extension-installer?

To use the phpstan/extension-installer, first, you need to add it your project using Composer. This can be done by running the following command in your terminal:

composer require --dev phpstan/extension-installer

Starting from Composer 2.2.0, a question about the execution permission for the plugin will appear. You should respond with 'y' to grant execution permission to the plugin.

You can instruct the installer to ignore certain extensions if you'd like to handle those manually. This can be achieved by adding an extra.phpstan/extension-installer.ignore array in your composer.json file:

{
  "extra": {
    "phpstan/extension-installer": {
      "ignore": [
        "phpstan/phpstan-phpunit"
      ]
    }
  }
}

Please note that you cannot use the --no-scripts flag with Composer when using this extension installer as it relies on Composer script events.

Where are the phpstan/extension-installer docs?

The official plugin documentation can be found on the GitHub page of the phpstan/extension-installer. Another valuable source of information is the PHPStan website. These sources provide comprehensive guides and examples to effectively utilize the extension installer, PHPStan, and the respective extensions.