|
1 | 1 | { |
2 | 2 | "name": "previousnext/phpunit-splitter", |
3 | 3 | "description": "Splits phpunit tests", |
4 | | - "keywords": ["testing"], |
| 4 | + "keywords": ["testing", "phpunit"], |
5 | 5 | "license": "GPL-2.0-or-later", |
6 | 6 | "authors": [ |
7 | 7 | { |
8 | 8 | "name": "Michael Strelan", |
9 | 9 | |
| 10 | + }, |
| 11 | + { |
| 12 | + "name": "Kim Pepper", |
| 13 | + |
10 | 14 | } |
11 | 15 | ], |
12 | 16 | "type": "project", |
13 | 17 | "require": { |
14 | 18 | "php": "^8.1", |
15 | 19 | "ext-simplexml": "*", |
16 | | - "symfony/console": "^6.3|^7.0" |
| 20 | + "phpstan/phpstan-deprecation-rules": "^1.2", |
| 21 | + "phpstan/phpstan-phpunit": "^1.4", |
| 22 | + "symfony/console": "^6.3|^7.2" |
17 | 23 | }, |
18 | 24 | "require-dev": { |
19 | 25 | "dealerdirect/phpcodesniffer-composer-installer": "^1.0", |
20 | | - "phpstan/phpstan": "^1.10", |
21 | | - "phpunit/phpunit": "^9.6", |
| 26 | + "phpstan/extension-installer": "^1.4", |
| 27 | + "phpstan/phpstan": "^1.12.19", |
| 28 | + "phpunit/phpunit": "^10.5.45", |
22 | 29 | "previousnext/coding-standard": "^1.1.1", |
23 | 30 | "staabm/annotate-pull-request-from-checkstyle": "^1.8" |
24 | 31 | }, |
25 | | - "bin" : ["phpunit-splitter"], |
26 | | - "conflict": { |
27 | | - "drupal/coder": "<8.3.21" |
28 | | - }, |
| 32 | + "bin": ["phpunit-splitter"], |
29 | 33 | "autoload": { |
30 | 34 | "psr-4": {"PhpUnitSplitter\\": "src/"} |
31 | 35 | }, |
|
39 | 43 | "sort-packages": true, |
40 | 44 | "bin-dir": "bin", |
41 | 45 | "allow-plugins": { |
42 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
| 46 | + "dealerdirect/phpcodesniffer-composer-installer": true, |
| 47 | + "phpstan/extension-installer": true |
43 | 48 | } |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "phpcs": [ |
| 52 | + "phpcs" |
| 53 | + ], |
| 54 | + "phpcbf": [ |
| 55 | + "phpcbf" |
| 56 | + ], |
| 57 | + "phpstan": [ |
| 58 | + "phpstan analyse --no-progress -v" |
| 59 | + ], |
| 60 | + "phpunit": [ |
| 61 | + "phpunit" |
| 62 | + ] |
44 | 63 | } |
45 | 64 | } |
0 commit comments