├── LICENSE.md ├── bin └── pools ├── composer.json ├── phpunit.xml ├── src ├── Concerns │ └── Console │ │ └── InteractsWithPrompts.php └── Console │ └── Commands │ └── InstallCommand.php └── stubs ├── larastan └── phpstan.neon ├── phpstan └── phpstan.neon ├── pint ├── pint-nuno-maduro.json └── pint.json └── rector └── rector.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /bin/pools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/bin/pools -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Concerns/Console/InteractsWithPrompts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/src/Concerns/Console/InteractsWithPrompts.php -------------------------------------------------------------------------------- /src/Console/Commands/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/src/Console/Commands/InstallCommand.php -------------------------------------------------------------------------------- /stubs/larastan/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/stubs/larastan/phpstan.neon -------------------------------------------------------------------------------- /stubs/phpstan/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/stubs/phpstan/phpstan.neon -------------------------------------------------------------------------------- /stubs/pint/pint-nuno-maduro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/stubs/pint/pint-nuno-maduro.json -------------------------------------------------------------------------------- /stubs/pint/pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/stubs/pint/pint.json -------------------------------------------------------------------------------- /stubs/rector/rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poolsphp/pools/HEAD/stubs/rector/rector.php --------------------------------------------------------------------------------