|
3 | 3 | "description": "A description for DummyPackageName.",
|
4 | 4 | "type": "package",
|
5 | 5 | "license": "MIT",
|
| 6 | + "homepage": "https://github.com/DummyVendor/DummyPackageName", |
6 | 7 | "keywords": [
|
| 8 | + "DummyVendor/DummyPackageName", |
7 | 9 | "laravel"
|
8 | 10 | ],
|
9 | 11 | "authors": [
|
|
13 | 15 | }
|
14 | 16 | ],
|
15 | 17 | "require": {
|
16 |
| - "illuminate/support": "^7.0|^8.0" |
| 18 | + "php": "^8.0.2", |
| 19 | + "illuminate/contracts": "^9.0" |
| 20 | + }, |
| 21 | + "require-dev": { |
| 22 | + "laravel/pint": "^1.0", |
| 23 | + "nunomaduro/collision": "^6.0", |
| 24 | + "nunomaduro/larastan": "^2.0.1", |
| 25 | + "orchestra/testbench": "^7.0", |
| 26 | + "pestphp/pest": "^1.21", |
| 27 | + "pestphp/pest-plugin-laravel": "^1.1", |
| 28 | + "phpstan/extension-installer": "^1.1", |
| 29 | + "phpstan/phpstan-deprecation-rules": "^1.0", |
| 30 | + "phpstan/phpstan-phpunit": "^1.0", |
| 31 | + "phpunit/phpunit": "^9.5", |
| 32 | + "spatie/laravel-ray": "^1.26" |
17 | 33 | },
|
18 | 34 | "autoload": {
|
19 | 35 | "psr-4": {
|
|
26 | 42 | }
|
27 | 43 | },
|
28 | 44 | "scripts": {
|
29 |
| - "test": "vendor/bin/phpunit" |
| 45 | + "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
| 46 | + "analyse": "vendor/bin/phpstan analyse", |
| 47 | + "test": "vendor/bin/pest", |
| 48 | + "test-coverage": "vendor/bin/pest --coverage", |
| 49 | + "format": "vendor/bin/pint" |
| 50 | + }, |
| 51 | + "config": { |
| 52 | + "sort-packages": true, |
| 53 | + "allow-plugins": { |
| 54 | + "pestphp/pest-plugin": true, |
| 55 | + "phpstan/extension-installer": true |
| 56 | + } |
30 | 57 | },
|
31 | 58 | "extra": {
|
32 | 59 | "laravel": {
|
|
35 | 62 | ]
|
36 | 63 | }
|
37 | 64 | },
|
38 |
| - "require-dev": { |
39 |
| - "orchestra/testbench": "^6.0" |
40 |
| - } |
| 65 | + "minimum-stability": "dev", |
| 66 | + "prefer-stable": true |
41 | 67 | }
|
0 commit comments