|
| 1 | +{ |
| 2 | + "name": "shipmonk/doctrine-query-checker", |
| 3 | + "description": "Doctrine Query AST validator", |
| 4 | + "license": [ |
| 5 | + "MIT" |
| 6 | + ], |
| 7 | + "require": { |
| 8 | + "php": "^8.1", |
| 9 | + "doctrine/dbal": "^4.2", |
| 10 | + "doctrine/orm": "^3.2" |
| 11 | + }, |
| 12 | + "require-dev": { |
| 13 | + "editorconfig-checker/editorconfig-checker": "^10.6.0", |
| 14 | + "ergebnis/composer-normalize": "^2.42.0", |
| 15 | + "nette/utils": "^4.0", |
| 16 | + "phpstan/phpstan": "^2.0", |
| 17 | + "phpstan/phpstan-phpunit": "^2.0", |
| 18 | + "phpstan/phpstan-strict-rules": "^2.0", |
| 19 | + "phpunit/phpunit": "^10.5", |
| 20 | + "ramsey/uuid": "^4.7.6", |
| 21 | + "ramsey/uuid-doctrine": "^2.1.0", |
| 22 | + "shipmonk/composer-dependency-analyser": "^1.8", |
| 23 | + "shipmonk/name-collision-detector": "^2.1", |
| 24 | + "shipmonk/phpstan-rules": "^4.1", |
| 25 | + "slevomat/coding-standard": "^8.15", |
| 26 | + "symfony/cache": "^6.4 || ^7.0" |
| 27 | + }, |
| 28 | + "autoload": { |
| 29 | + "psr-4": { |
| 30 | + "ShipMonk\\DoctrineQueryChecker\\": "src/" |
| 31 | + } |
| 32 | + }, |
| 33 | + "autoload-dev": { |
| 34 | + "psr-4": { |
| 35 | + "ShipMonkTests\\DoctrineQueryChecker\\": "tests/" |
| 36 | + } |
| 37 | + }, |
| 38 | + "config": { |
| 39 | + "allow-plugins": { |
| 40 | + "dealerdirect/phpcodesniffer-composer-installer": true, |
| 41 | + "ergebnis/composer-normalize": true |
| 42 | + }, |
| 43 | + "sort-packages": true |
| 44 | + }, |
| 45 | + "scripts": { |
| 46 | + "check": [ |
| 47 | + "@check:composer", |
| 48 | + "@check:ec", |
| 49 | + "@check:cs", |
| 50 | + "@check:types", |
| 51 | + "@check:tests", |
| 52 | + "@check:dependencies" |
| 53 | + ], |
| 54 | + "check:composer": [ |
| 55 | + "composer normalize --dry-run --no-check-lock --no-update-lock", |
| 56 | + "composer validate --strict" |
| 57 | + ], |
| 58 | + "check:cs": "phpcs", |
| 59 | + "check:dependencies": "composer-dependency-analyser", |
| 60 | + "check:ec": "ec src tests", |
| 61 | + "check:tests": "phpunit tests", |
| 62 | + "check:types": "phpstan analyse -vvv", |
| 63 | + "fix:cs": "phpcbf" |
| 64 | + } |
| 65 | +} |
0 commit comments