|
3 | 3 | "description": "Adds Foggy support in Laravel", |
4 | 4 | "license": "MIT", |
5 | 5 | "require": { |
6 | | - "php": "^8.2", |
| 6 | + "php": "^8.3", |
7 | 7 | "doctrine/dbal": "^3.5.1 || ^4.0", |
8 | | - "illuminate/console": "^11.0", |
9 | | - "illuminate/database": "^11.0", |
10 | | - "illuminate/support": "^11.0", |
| 8 | + "illuminate/console": "^11.0 || ^12.0", |
| 9 | + "illuminate/database": "^11.0 || ^12.0", |
| 10 | + "illuminate/support": "^11.0 || ^12.0", |
11 | 11 | "thecodingmachine/safe": "^2.5 || ^3.0", |
12 | 12 | "worksome/foggy": "^0.6" |
13 | 13 | }, |
14 | 14 | "require-dev": { |
15 | | - "orchestra/testbench": "^8.21 || ^9.0", |
| 15 | + "nunomaduro/collision": "^7.10 || ^8.1.1", |
| 16 | + "orchestra/testbench": "^9.12 || ^10.1", |
16 | 17 | "pestphp/pest": "^3.7", |
17 | 18 | "pestphp/pest-plugin-laravel": "^3.1", |
18 | | - "worksome/coding-style": "^3.1" |
| 19 | + "worksome/coding-style": "^3.2" |
19 | 20 | }, |
20 | 21 | "autoload": { |
21 | 22 | "psr-4": { |
|
29 | 30 | }, |
30 | 31 | "scripts": { |
31 | 32 | "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
| 33 | + "lint": "vendor/bin/ecs --fix", |
32 | 34 | "test:unit": "vendor/bin/pest -p", |
| 35 | + "test:types": "vendor/bin/phpstan analyse", |
| 36 | + "test:style": "vendor/bin/ecs", |
33 | 37 | "test:coverage": "vendor/bin/pest -p --coverage", |
34 | 38 | "test": [ |
| 39 | + "@test:style", |
| 40 | + "@test:types", |
35 | 41 | "@test:unit" |
36 | 42 | ] |
37 | 43 | }, |
|
0 commit comments