|
| 1 | +{ |
| 2 | + "name": "shipmonk/phpstan-ignore-inliner", |
| 3 | + "description": "Inline your PHPStan error ignores into the source files via @phpstan-ignore comments.", |
| 4 | + "license": [ |
| 5 | + "MIT" |
| 6 | + ], |
| 7 | + "type": "phpstan-extension", |
| 8 | + "keywords": [ |
| 9 | + "dev", |
| 10 | + "phpstan", |
| 11 | + "phpstan errors", |
| 12 | + "phpstan extension", |
| 13 | + "error identifier" |
| 14 | + ], |
| 15 | + "require": { |
| 16 | + "php": "^8.1", |
| 17 | + "phpstan/phpstan": "^2" |
| 18 | + }, |
| 19 | + "require-dev": { |
| 20 | + "editorconfig-checker/editorconfig-checker": "^10.7.0", |
| 21 | + "ergebnis/composer-normalize": "2.47.0", |
| 22 | + "phpstan/extension-installer": "^1.4.3", |
| 23 | + "phpstan/phpstan-phpunit": "^2.0.6", |
| 24 | + "phpstan/phpstan-strict-rules": "^2.0.4", |
| 25 | + "phpunit/phpunit": "^10.5.46", |
| 26 | + "shipmonk/phpstan-rules": "^4.1.2", |
| 27 | + "slevomat/coding-standard": "^8.18.0" |
| 28 | + }, |
| 29 | + "autoload": { |
| 30 | + "psr-4": { |
| 31 | + "ShipMonk\\PHPStan\\Errors\\": "src/" |
| 32 | + } |
| 33 | + }, |
| 34 | + "autoload-dev": { |
| 35 | + "psr-4": { |
| 36 | + "ShipMonk\\PHPStan\\Errors\\": "tests/" |
| 37 | + } |
| 38 | + }, |
| 39 | + "bin": [ |
| 40 | + "bin/inline-phpstan-ignores" |
| 41 | + ], |
| 42 | + "config": { |
| 43 | + "allow-plugins": { |
| 44 | + "dealerdirect/phpcodesniffer-composer-installer": false, |
| 45 | + "ergebnis/composer-normalize": true, |
| 46 | + "phpstan/extension-installer": true |
| 47 | + }, |
| 48 | + "sort-packages": true |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "check": [ |
| 52 | + "@check:composer", |
| 53 | + "@check:ec", |
| 54 | + "@check:cs", |
| 55 | + "@check:types", |
| 56 | + "@check:tests" |
| 57 | + ], |
| 58 | + "check:composer": [ |
| 59 | + "composer normalize --dry-run --no-check-lock --no-update-lock", |
| 60 | + "composer validate --strict" |
| 61 | + ], |
| 62 | + "check:cs": "phpcs", |
| 63 | + "check:ec": "ec src tests", |
| 64 | + "check:tests": "phpunit tests", |
| 65 | + "check:types": "phpstan analyse -vv --ansi", |
| 66 | + "fix:cs": "phpcbf" |
| 67 | + } |
| 68 | +} |
0 commit comments