phpcq/all-tasks
phpcq/all-tasks bundles the full set of PHPCQ tasks into one convenient package, so you can install and run multiple code quality tools with a single dependency. Ideal for setting up consistent linting, testing, and analysis in your PHP projects.
phpcq/all-tasks) appears to be a meta-package aggregating dependencies for PHP code quality tools (likely static analysis, linting, or testing frameworks like PHPStan, Psalm, PHPMD, etc.). This aligns well with Laravel’s dependency-driven architecture, where tooling for code quality is often integrated via Composer.phpstan/phpstan, phpmd/phpmd) via phpstan.neon or phpunit.xml. This package could centralize versioning for a monorepo or multi-package PHP project, reducing dependency sprawl.phpstan.neon overrides). Assess whether the package enforces strict versions or allows customization.composer require is straightforward. However, verify if it pulls in transitive dependencies that may conflict with Laravel’s existing tooling (e.g., symfony/console versions).phpstan.neon), so ensure the package doesn’t hardcode paths or assume Laravel’s directory structure.phpunit.xml or custom GitHub Actions/GitLab CI pipelines.phpstan/phpstan is directly required), this package adds indirect dependencies, increasing attack surface and maintenance complexity.phpstan/phpstan) or complement it (e.g., enforce a shared version across a monorepo)?phpstan.neon overrides) or does it enforce defaults?composer why-not phpcq/all-tasks to check for version conflicts with Laravel’s existing dependencies.phpunit.xml for test-related tools.composer scripts (e.g., post-install-cmd) to run checks.phpstan/phpstan with explicit versions instead of a meta-package.composer.json for existing code quality tools (e.g., PHPStan, PHPMD).composer why phpcq/all-tasks to identify conflicts.phpcq/all-tasks to a non-production branch and test:
phpstan.neon) still be overridden?composer.json.phpstan.neon in config/). If it does, consider forking or patching the package.composer why phpcq/all-tasks).phpstan.neon in project root vs. package defaults).phpstan step to GitHub Actions).phpstan/phpstan requires updating the meta-package)./app vs. Laravel’s /app convention), custom workarounds may be needed.phpstan.neon alongside package defaults).How can I help you explore Laravel packages today?