|
1 | 1 | {
|
2 | 2 | "name": "petrobolos/fixed-array-functions",
|
3 |
| - "description": "This is my package fixed-array-functions", |
| 3 | + "description": "Laravel helper methods for working with high performance SPL fixed arrays.", |
4 | 4 | "keywords": [
|
5 | 5 | "laravel",
|
6 | 6 | "splfixedarray",
|
7 | 7 | "array",
|
8 | 8 | "collection"
|
9 | 9 | ],
|
10 |
| - "homepage": "https://github.com/petrobolos/fixed-array-functions", |
| 10 | + "homepage": "https://github.com/oliverearl/fixed-array-functions", |
11 | 11 | "license": "MIT",
|
12 | 12 | "authors": [
|
13 | 13 | {
|
|
17 | 17 | }
|
18 | 18 | ],
|
19 | 19 | "require": {
|
20 |
| - "php": "^8.0 || ^8.1", |
21 |
| - "spatie/laravel-package-tools": "^1.9.2", |
22 |
| - "illuminate/contracts": "^8.0 || ^9.0" |
| 20 | + "php": "^8.3", |
| 21 | + "spatie/laravel-package-tools": "^1.16", |
| 22 | + "illuminate/contracts": "^11.0" |
23 | 23 | },
|
24 | 24 | "require-dev": {
|
25 |
| - "nunomaduro/collision": "^5.0 || ^6.0", |
26 |
| - "nunomaduro/larastan": "^1.0.3 || ^2.0.1", |
27 |
| - "orchestra/testbench": "^6.0 || ^7.0", |
28 |
| - "pestphp/pest": "^1.21", |
29 |
| - "pestphp/pest-plugin-laravel": "^1.1", |
30 |
| - "phpstan/extension-installer": "^1.1", |
31 |
| - "phpstan/phpstan-deprecation-rules": "^1.0", |
32 |
| - "phpstan/phpstan-phpunit": "^1.0", |
33 |
| - "phpunit/phpunit": "^9.5" |
| 25 | + "laravel/pint": "^1.14", |
| 26 | + "nunomaduro/collision": "^8.1.1", |
| 27 | + "larastan/larastan": "^2.9", |
| 28 | + "orchestra/testbench": "^9.0.0", |
| 29 | + "pestphp/pest": "^3.0", |
| 30 | + "pestphp/pest-plugin-arch": "^3.0", |
| 31 | + "pestphp/pest-plugin-laravel": "^3.0", |
| 32 | + "phpstan/extension-installer": "^1.3", |
| 33 | + "phpstan/phpstan-deprecation-rules": "^1.1", |
| 34 | + "phpstan/phpstan-phpunit": "^1.3", |
| 35 | + "spatie/laravel-ray": "^1.35" |
34 | 36 | },
|
35 | 37 | "autoload": {
|
36 | 38 | "psr-4": {
|
37 |
| - "Petrobolos\\FixedArray\\": "src" |
| 39 | + "Petrobolos\\FixedArray\\": "src/" |
38 | 40 | },
|
39 | 41 | "files": [
|
40 | 42 | "src/helpers.php"
|
41 | 43 | ]
|
42 | 44 | },
|
43 | 45 | "autoload-dev": {
|
44 | 46 | "psr-4": {
|
45 |
| - "Petrobolos\\FixedArray\\Tests\\": "tests" |
| 47 | + "Petrobolos\\FixedArray\\Tests\\": "tests", |
| 48 | + "Workbench\\App\\": "workbench/app/" |
46 | 49 | }
|
47 | 50 | },
|
48 | 51 | "scripts": {
|
| 52 | + "post-autoload-dump": "@composer run prepare", |
| 53 | + "prepare": "@php vendor/bin/testbench package:discover --ansi", |
49 | 54 | "analyse": "vendor/bin/phpstan analyse",
|
50 | 55 | "test": "vendor/bin/pest",
|
51 |
| - "test-coverage": "vendor/bin/pest --coverage" |
| 56 | + "test-coverage": "vendor/bin/pest --coverage", |
| 57 | + "format": "vendor/bin/pint" |
52 | 58 | },
|
53 | 59 | "config": {
|
54 | 60 | "sort-packages": true,
|
|
61 | 67 | "laravel": {
|
62 | 68 | "providers": [
|
63 | 69 | "Petrobolos\\FixedArray\\FixedArrayFunctionsServiceProvider"
|
64 |
| - ] |
| 70 | + ], |
| 71 | + "aliases": { |
| 72 | + "FixedArray": "Petrobolos\\FixedArrayFunctions\\Facades\\FixedArray" |
| 73 | + } |
65 | 74 | }
|
66 | 75 | },
|
67 | 76 | "minimum-stability": "dev",
|
|
0 commit comments