|
4 | 4 | "license": "MIT",
|
5 | 5 | "type": "project",
|
6 | 6 | "keywords": [
|
7 |
| - "framework", |
8 |
| - "laravel" |
| 7 | + "php", |
| 8 | + "laravel", |
| 9 | + "boilerplate", |
| 10 | + "laravel-boilerplate", |
| 11 | + "starter-template", |
| 12 | + "laravel-package", |
| 13 | + "starter-kit", |
| 14 | + "laravel-application", |
| 15 | + "starter-project", |
| 16 | + "laravel-starter-template", |
| 17 | + "laravel-starter-kit", |
| 18 | + "laravel-api", |
| 19 | + "laravel-ddd", |
| 20 | + "ddd" |
9 | 21 | ],
|
10 | 22 | "require": {
|
11 | 23 | "php": "^8.2",
|
|
17 | 29 | "league/fractal": "^0.20.1",
|
18 | 30 | "sentry/sentry-laravel": "^4.5",
|
19 | 31 | "spatie/laravel-fractal": "^6.2",
|
20 |
| - "spatie/laravel-query-builder": "^5.8", |
| 32 | + "spatie/laravel-query-builder": "^6.0", |
21 | 33 | "spatie/laravel-route-attributes": "^1.22",
|
22 | 34 | "wayofdev/laravel-open-docs": "^2.1"
|
23 | 35 | },
|
24 | 36 | "require-dev": {
|
| 37 | + "ergebnis/phpunit-slow-test-detector": "^2.14", |
25 | 38 | "fakerphp/faker": "^1.23",
|
26 | 39 | "larastan/larastan": "^2.9",
|
27 | 40 | "mockery/mockery": "^1.6",
|
28 | 41 | "nunomaduro/collision": "^8.1",
|
| 42 | + "pestphp/pest": "^2.34", |
29 | 43 | "pestphp/pest-plugin-laravel": "^2.4",
|
30 | 44 | "phpstan/extension-installer": "^1.3",
|
| 45 | + "phpstan/phpstan": "^1.11", |
31 | 46 | "phpstan/phpstan-deprecation-rules": "^1.2",
|
| 47 | + "phpstan/phpstan-phpunit": "^1.3", |
| 48 | + "phpstan/phpstan-strict-rules": "^1.5", |
32 | 49 | "phpunit/phpunit": "^10.5",
|
| 50 | + "psalm/plugin-laravel": "^2.11", |
| 51 | + "psalm/plugin-phpunit": "~0.19.0", |
| 52 | + "roave/infection-static-analysis-plugin": "^1.35", |
33 | 53 | "spatie/laravel-ignition": "^2.7",
|
| 54 | + "vimeo/psalm": "^5.23.1", |
34 | 55 | "wayofdev/cs-fixer-config": "^1.4"
|
35 | 56 | },
|
36 | 57 | "minimum-stability": "dev",
|
|
52 | 73 | "config": {
|
53 | 74 | "allow-plugins": {
|
54 | 75 | "ergebnis/composer-normalize": true,
|
| 76 | + "infection/extension-installer": true, |
55 | 77 | "pestphp/pest-plugin": true,
|
56 | 78 | "php-http/discovery": true,
|
57 | 79 | "phpstan/extension-installer": true
|
|
88 | 110 | "deptrac": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache",
|
89 | 111 | "deptrac:ci": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache --formatter github-actions",
|
90 | 112 | "deptrac:gv": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache --formatter graphviz-image --output ../assets/deptrac.svg",
|
| 113 | + "infect": [ |
| 114 | + "Composer\\Config::disableProcessTimeout", |
| 115 | + "@putenv XDEBUG_MODE=coverage", |
| 116 | + "php -d memory_limit=2G vendor/bin/roave-infection-static-analysis-plugin --threads=2" |
| 117 | + ], |
| 118 | + "infect:ci": [ |
| 119 | + "Composer\\Config::disableProcessTimeout", |
| 120 | + "@putenv XDEBUG_MODE=coverage", |
| 121 | + "php -d memory_limit=2G vendor/bin/roave-infection-static-analysis-plugin --threads=2 --ansi --logger-github --ignore-msi-with-no-mutations --only-covered" |
| 122 | + ], |
| 123 | + "psalm": "php vendor/bin/psalm --show-info=true", |
| 124 | + "psalm:baseline": "php vendor/bin/psalm --set-baseline=psalm-baseline.xml", |
| 125 | + "psalm:ci": "php vendor/bin/psalm --output-format=github --shepherd --show-info=false --stats --threads=4", |
91 | 126 | "stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
|
92 | 127 | "stan:baseline": "php vendor/bin/phpstan analyse --generate-baseline --memory-limit=2G --allow-empty-baseline",
|
93 |
| - "test": "php vendor/bin/pest", |
94 |
| - "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage-clover coverage.xml" |
| 128 | + "stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github", |
| 129 | + "test": [ |
| 130 | + "@putenv XDEBUG_MODE=coverage", |
| 131 | + "php vendor/bin/pest --color=always" |
| 132 | + ], |
| 133 | + "test:cc": [ |
| 134 | + "@putenv XDEBUG_MODE=coverage", |
| 135 | + "php vendor/bin/pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml --color=always" |
| 136 | + ] |
95 | 137 | }
|
96 | 138 | }
|
0 commit comments