|
19 | 19 | "madewithlove/license-checker": "^v1.0", |
20 | 20 | "phpstan/phpstan": "^2.1", |
21 | 21 | "phpstan/phpstan-deprecation-rules": "^2.0", |
22 | | - "rector/rector": "^2.4" |
| 22 | + "rector/rector": "^2.4", |
| 23 | + "projektgopher/whisky": "^0.7.4" |
23 | 24 | }, |
24 | 25 | "suggest": { |
25 | 26 | "ext-imagick": "Required for PDF rasterization and image processing features", |
|
35 | 36 | "bin/cli.php" |
36 | 37 | ], |
37 | 38 | "scripts": { |
38 | | - "lint": "php-cs-fixer fix --dry-run --diff", |
39 | | - "phpstan": "phpstan analyse src --level 6", |
40 | | - "format": "php-cs-fixer fix", |
41 | | - "rector": "rector process src tests", |
42 | | - "rector:check": "rector process src tests --dry-run" |
| 39 | + "lint:cs-fixer": "php-cs-fixer fix --dry-run --diff", |
| 40 | + "lint:rector": "rector process src tests --dry-run", |
| 41 | + "lint:phpstan": "phpstan analyse", |
| 42 | + "lint": [ |
| 43 | + "@lint:phpstan", |
| 44 | + "@lint:cs-fixer", |
| 45 | + "@lint:rector" |
| 46 | + ], |
| 47 | + "format:cs-fixer": "php-cs-fixer fix", |
| 48 | + "format:rector": "rector process src tests", |
| 49 | + "format": [ |
| 50 | + "@format:cs-fixer", |
| 51 | + "@format:rector" |
| 52 | + ], |
| 53 | + "test:unit": "phpunit -c tests/phpunit.xml", |
| 54 | + "test:functional": "phpunit -c tests/functional.xml", |
| 55 | + "test:smoke:v1": "./tests/test_v1_code_samples.sh", |
| 56 | + "test:smoke:v2": "./tests/test_v2_code_samples.sh" |
43 | 57 | } |
44 | 58 | } |
0 commit comments