|
1 | 1 | {
|
2 | 2 | "name": "wayofdev/laravel-package-tpl",
|
3 |
| - "description": "PHP package template with GitHub Actions", |
| 3 | + "description": "🚀 Jump-start your Laravel package development with our pre-configured Composer template, designed for seamless integration. This template includes essential tools such as PHPUnit, PHPStan, GitHub Actions, and Docker to streamline your workflow and enhance productivity.", |
4 | 4 | "license": "MIT",
|
5 | 5 | "type": "library",
|
6 | 6 | "authors": [
|
|
88 | 88 | "cs:fix": "php vendor/bin/php-cs-fixer fix -v",
|
89 | 89 | "infect": "XDEBUG_MODE=coverage php vendor/bin/roave-infection-static-analysis-plugin --configuration=infection.json.dist",
|
90 | 90 | "infect:ci": "XDEBUG_MODE=coverage php vendor/bin/roave-infection-static-analysis-plugin --ansi --configuration=infection.json.dist --logger-github --ignore-msi-with-no-mutations --only-covered",
|
| 91 | + "psalm": "php vendor/bin/psalm --show-info=true", |
| 92 | + "psalm:baseline": "php vendor/bin/psalm --set-baseline=psalm-baseline.xml", |
| 93 | + "psalm:ci": "php vendor/bin/psalm --output-format=github --shepherd --show-info=false --stats --threads=4", |
91 | 94 | "refactor": "php vendor/bin/rector process --config=rector.php",
|
92 | 95 | "refactor:ci": "php vendor/bin/rector process --config=rector.php --dry-run --ansi",
|
93 | 96 | "stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
|
94 | 97 | "stan:baseline": "php vendor/bin/phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
|
95 | 98 | "stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github",
|
96 |
| - "psalm": "php vendor/bin/psalm --show-info=true", |
97 |
| - "psalm:baseline": "php vendor/bin/psalm --set-baseline=psalm-baseline.xml", |
98 |
| - "psalm:ci": "php vendor/bin/psalm --output-format=github --shepherd --show-info=false --stats --threads=4", |
99 | 99 | "test": "XDEBUG_MODE=coverage php vendor/bin/pest",
|
100 | 100 | "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
|
101 | 101 | }
|
|
0 commit comments