├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpstan ├── phpstan.phar └── src ├── .gitignore ├── bin └── phpstan └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/phpstan -------------------------------------------------------------------------------- /phpstan.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/phpstan.phar -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.lock 3 | -------------------------------------------------------------------------------- /src/bin/phpstan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/src/bin/phpstan -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/phpstan-shim/HEAD/src/composer.json --------------------------------------------------------------------------------